From: Chen Wandun Date: Fri, 20 Dec 2019 09:41:44 +0000 (+0800) Subject: power: suppy: ucs1002: Make the symbol 'ucs1002_regulator_enable' static X-Git-Tag: v5.6-rc1~115^2~6 X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=commitdiff_plain;h=577233a3f5637aff40e376572d5ed24ff80204d0;p=linux.git power: suppy: ucs1002: Make the symbol 'ucs1002_regulator_enable' static Fix the following sparse warning: drivers/power/supply/ucs1002_power.c:492:5: warning: symbol 'ucs1002_regulator_enable' was not declared. Should it be static? Fixes: a3d70dacc727 ("power: suppy: ucs1002: disable power when max current is 0") Signed-off-by: Chen Wandun Signed-off-by: Sebastian Reichel --- diff --git a/drivers/power/supply/ucs1002_power.c b/drivers/power/supply/ucs1002_power.c index 0ca80d00b80a..cdb9a23d825f 100644 --- a/drivers/power/supply/ucs1002_power.c +++ b/drivers/power/supply/ucs1002_power.c @@ -489,7 +489,7 @@ static irqreturn_t ucs1002_alert_irq(int irq, void *data) return IRQ_HANDLED; } -int ucs1002_regulator_enable(struct regulator_dev *rdev) +static int ucs1002_regulator_enable(struct regulator_dev *rdev) { struct ucs1002_info *info = rdev_get_drvdata(rdev);