From 6ac423973397d17684528e89fbbca49b2ff7bb43 Mon Sep 17 00:00:00 2001 From: Wei Yongjun Date: Mon, 6 Feb 2017 14:29:55 +0000 Subject: [PATCH] PM / OPP: Make _find_opp_table_unlocked() static Fixes the following sparse warning: drivers/base/power/opp/core.c:49:18: warning: symbol '_find_opp_table_unlocked' was not declared. Should it be static? Signed-off-by: Wei Yongjun Reviewed-by: Stephen Boyd Acked-by: Viresh Kumar Signed-off-by: Rafael J. Wysocki --- drivers/base/power/opp/core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/base/power/opp/core.c b/drivers/base/power/opp/core.c index 541d32c..91ec323 100644 --- a/drivers/base/power/opp/core.c +++ b/drivers/base/power/opp/core.c @@ -46,7 +46,7 @@ static struct opp_device *_find_opp_dev(const struct device *dev, return NULL; } -struct opp_table *_find_opp_table_unlocked(struct device *dev) +static struct opp_table *_find_opp_table_unlocked(struct device *dev) { struct opp_table *opp_table; -- 2.7.4