소스 검색

qcacmn: Make scheduler context static inside scheduler core

Make scheduler context static such that its not visible outside
core scheduler.

Change-Id: I202cfc62f7ff56f9f7d5a327dfe033f49d6c829e
CRs-Fixed: 1104147
Rajeev Kumar 8 년 전
부모
커밋
c108cd3035
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      sch/src/scheduler_core.c

+ 1 - 1
sch/src/scheduler_core.c

@@ -28,7 +28,7 @@
 #include <scheduler_core.h>
 #include <osdep.h>
 
-struct scheduler_ctx *gp_sched_ctx = NULL;
+static struct scheduler_ctx *gp_sched_ctx;
 
 QDF_STATUS scheduler_create_ctx(void)
 {