diff options
| author | Wei Yongjun <[email protected]> | 2017-02-06 14:29:55 +0000 |
|---|---|---|
| committer | Rafael J. Wysocki <[email protected]> | 2017-02-07 12:39:25 +0000 |
| commit | 6ac423973397d17684528e89fbbca49b2ff7bb43 (patch) | |
| tree | 6dfff75dd35ccd146f90ca759cf348fe8434f418 | |
| parent | PM / OPP: Update Documentation to remove RCU specific bits (diff) | |
| download | kernel-6ac423973397d17684528e89fbbca49b2ff7bb43.tar.gz kernel-6ac423973397d17684528e89fbbca49b2ff7bb43.zip | |
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 <[email protected]>
Reviewed-by: Stephen Boyd <[email protected]>
Acked-by: Viresh Kumar <[email protected]>
Signed-off-by: Rafael J. Wysocki <[email protected]>
| -rw-r--r-- | drivers/base/power/opp/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/base/power/opp/core.c b/drivers/base/power/opp/core.c index 541d32c00cbc..91ec3232d630 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; |
