pass: Replace pass_main() with main() expression 05/168505/1
authorChanwoo Choi <cw00.choi@samsung.com>
Mon, 29 Jan 2018 00:29:20 +0000 (09:29 +0900)
committerChanwoo Choi <cw00.choi@samsung.com>
Mon, 29 Jan 2018 06:20:40 +0000 (15:20 +0900)
PASS doesn't define the pass_main(). Instead, main() function name
is correct. Replace pass_main() with main() expression.

Change-Id: I6ff03c1069e452a0c7af75495ff9d8d08d4ccbea
Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
src/pass/pass.c
src/pmqos/pmqos.c

index c85d440d8ca12f0ddda6515a11c34aa8db49f15c..b5bd8a6d77692ea2c194ce9a722a40011e94b3a9 100644 (file)
@@ -353,7 +353,7 @@ static int pass_exit_done(void)
 /*
  * pass_init - Initialize PASS(Power Aware System Service)
  *
- * @data: When the data is passed from pass_main(), it is NULL.
+ * @data: When the data is passed from main(), it is NULL.
  *     On the other hand, it will contain the result of this function
  */
 static void pass_init(void *data)
@@ -364,7 +364,7 @@ static void pass_init(void *data)
 /*
  * pass_exit - Exit PASS
  *
- * @data: When the data is passed from pass_main(), it is NULL.
+ * @data: When the data is passed from main(), it is NULL.
  *     On the other hand, it will contain the result of this function
  */
 static void pass_exit(void *data)
@@ -390,7 +390,7 @@ static void pass_exit(void *data)
 /*
  * pass_probe - Probe PASS
  *
- * @data: the data passed from pass_main(), currently NULL
+ * @data: the data passed from main(), currently NULL
  */
 static int pass_probe(void *data)
 {
index 88d19abd97adf03bccb2520f3f2cc65d6c314ced..b2a04d6b549c36b6553de8e16425d85abba31899 100644 (file)
@@ -513,7 +513,7 @@ static void pmqos_exit(void *data)
 /*
  * pmqos_probe - Probe PMQOS
  *
- * @data: the data passed from pass_main(), currently NULL
+ * @data: the data passed from main(), currently NULL
  */
 static int pmqos_probe(void *data)
 {