diff options
author | Yadwinder Singh Brar <yadi.brar@samsung.com> | 2012-10-22 09:39:28 +0530 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-10-22 14:55:36 +0100 |
commit | 38d34035e6e8a0b23752682a279d3a61ff75450e (patch) | |
tree | 9801b06aa6530ef2a0d03fffc300f0cd940ea674 /drivers | |
parent | 15282ba9ea9d22c437dd53e589b937207b6a38ce (diff) | |
download | op-kernel-dev-38d34035e6e8a0b23752682a279d3a61ff75450e.zip op-kernel-dev-38d34035e6e8a0b23752682a279d3a61ff75450e.tar.gz |
regulator: max77686: Make max77686_enable() static.
This patch fixes a sparse warning. Since max77686_enable() is a callback,so it
should be static.
Signed-off-by: Yadwinder Singh Brar <yadi.brar@samsung.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/regulator/max77686.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/max77686.c b/drivers/regulator/max77686.c index 383eb9d..c9bec16 100644 --- a/drivers/regulator/max77686.c +++ b/drivers/regulator/max77686.c @@ -146,7 +146,7 @@ static int max77686_ldo_set_suspend_mode(struct regulator_dev *rdev, val); } -int max77686_enable(struct regulator_dev *rdev) +static int max77686_enable(struct regulator_dev *rdev) { struct max77686_data *max77686 = rdev_get_drvdata(rdev); |