From 0b0c0bd818ef76a20f58c3cb1ac96a3056ccb681 Mon Sep 17 00:00:00 2001 From: kbuild test robot Date: Sat, 30 May 2020 21:03:14 +0800 Subject: regulator: max8998: max8998_set_current_limit() can be static Fixes: 4ffea5e083f8 ("regulator: max8998: Add charger regulator") Signed-off-by: kbuild test robot Link: https://lore.kernel.org/r/20200530130314.GA73557@d7d8dbfb64ff Signed-off-by: Mark Brown --- drivers/regulator/max8998.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'drivers/regulator/max8998.c') diff --git a/drivers/regulator/max8998.c b/drivers/regulator/max8998.c index 668ced006417..340413bba0c5 100644 --- a/drivers/regulator/max8998.c +++ b/drivers/regulator/max8998.c @@ -371,8 +371,8 @@ static int max8998_set_voltage_buck_time_sel(struct regulator_dev *rdev, return 0; } -int max8998_set_current_limit(struct regulator_dev *rdev, - int min_uA, int max_uA) +static int max8998_set_current_limit(struct regulator_dev *rdev, + int min_uA, int max_uA) { struct max8998_data *max8998 = rdev_get_drvdata(rdev); struct i2c_client *i2c = max8998->iodev->i2c; -- cgit v1.2.3-59-g8ed1b