aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/power
diff options
context:
space:
mode:
authorColin Ian King <colin.king@canonical.com>2018-03-13 10:54:06 +0000
committerSebastian Reichel <sebastian.reichel@collabora.co.uk>2018-03-13 12:10:04 +0100
commit93619fdec96fa1cd19e5dffc5031cf4c63e6b431 (patch)
treefd2ebf18450ed665481d64209e46a43b3ac955e5 /drivers/power
parentMerge branch 'fixes' into for-next (diff)
downloadlinux-dev-93619fdec96fa1cd19e5dffc5031cf4c63e6b431.tar.xz
linux-dev-93619fdec96fa1cd19e5dffc5031cf4c63e6b431.zip
power: reset: make function sc27xx_poweroff_shutdown static
The function sc27xx_poweroff_shutdown is local to the source and does not need to be in global scope, so make it static. Cleans up sparse warning: drivers/power/reset/sc27xx-poweroff.c:28:6: warning: symbol 'sc27xx_poweroff_shutdown' was not declared. Should it be static? Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.co.uk>
Diffstat (limited to 'drivers/power')
-rw-r--r--drivers/power/reset/sc27xx-poweroff.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/power/reset/sc27xx-poweroff.c b/drivers/power/reset/sc27xx-poweroff.c
index 65c477eee559..29fb08b8faa0 100644
--- a/drivers/power/reset/sc27xx-poweroff.c
+++ b/drivers/power/reset/sc27xx-poweroff.c
@@ -25,7 +25,7 @@ static struct regmap *regmap;
* taking cpus down to avoid racing regmap or spi mutex lock when poweroff
* system through PMIC.
*/
-void sc27xx_poweroff_shutdown(void)
+static void sc27xx_poweroff_shutdown(void)
{
#ifdef CONFIG_PM_SLEEP_SMP
int cpu = smp_processor_id();