From: Wei Yongjun Date: Tue, 24 Jul 2018 06:32:59 +0000 (+0000) Subject: regulator: bd9571mwv: Make symbol 'dev_attr_backup_mode' static X-Git-Tag: v4.19-rc1~164^2^2~9 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a70a4694ed38fb68407c142db0f53722553bedea;p=thirdparty%2Fkernel%2Flinux.git regulator: bd9571mwv: Make symbol 'dev_attr_backup_mode' static Fixes the following sparse warning: drivers/regulator/bd9571mwv-regulator.c:220:1: warning: symbol 'dev_attr_backup_mode' was not declared. Should it be static? Signed-off-by: Wei Yongjun Reviewed-by: Geert Uytterhoeven Signed-off-by: Mark Brown --- diff --git a/drivers/regulator/bd9571mwv-regulator.c b/drivers/regulator/bd9571mwv-regulator.c index c44613b9423ba..274c5ed7cd737 100644 --- a/drivers/regulator/bd9571mwv-regulator.c +++ b/drivers/regulator/bd9571mwv-regulator.c @@ -217,7 +217,7 @@ static ssize_t backup_mode_store(struct device *dev, return count; } -DEVICE_ATTR_RW(backup_mode); +static DEVICE_ATTR_RW(backup_mode); static int bd9571mwv_suspend(struct device *dev) {