From: Chanwoo Choi Date: Mon, 29 Jan 2018 00:29:20 +0000 (+0900) Subject: pass: Replace pass_main() with main() expression X-Git-Tag: submit/tizen/20180221.002730~12 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F05%2F168505%2F1;p=platform%2Fcore%2Fsystem%2Fpass.git pass: Replace pass_main() with main() expression 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 --- diff --git a/src/pass/pass.c b/src/pass/pass.c index c85d440..b5bd8a6 100644 --- a/src/pass/pass.c +++ b/src/pass/pass.c @@ -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) { diff --git a/src/pmqos/pmqos.c b/src/pmqos/pmqos.c index 88d19ab..b2a04d6 100644 --- a/src/pmqos/pmqos.c +++ b/src/pmqos/pmqos.c @@ -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) {