From d4846b1a236dc30b534d72c543c8fa6175e33327 Mon Sep 17 00:00:00 2001 From: Chanwoo Choi Date: Mon, 29 Jan 2018 09:29:20 +0900 Subject: [PATCH] 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 --- src/pass/pass.c | 6 +++--- src/pmqos/pmqos.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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) { -- 2.34.1