diff options
author | Wei Yongjun <weiyongjun1@huawei.com> | 2019-01-10 14:07:42 +0000 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2019-01-11 09:16:40 +0100 |
commit | d04e779fb1dbeedf8a60b66d0d0048be4e65d366 (patch) | |
tree | 31a4d095842c2b63c1fd687309c000ce41a18128 /drivers/gpio | |
parent | 862523297778775a0543110dcbf2ca832782f675 (diff) | |
download | linux-d04e779fb1dbeedf8a60b66d0d0048be4e65d366.tar.bz2 |
gpio: pca953x: Make symbol 'pca953x_i2c_regmap' static
Fixes the following sparse warning:
drivers/gpio/gpio-pca953x.c:292:28: warning:
symbol 'pca953x_i2c_regmap' was not declared. Should it be static?
Fixes: 49427232764d ("gpio: pca953x: Perform basic regmap conversion")
Signed-off-by: Wei Yongjun <weiyongjun1@huawei.com>
Reviewed-by: Marek Vasut <marex@denx.de>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio')
-rw-r--r-- | drivers/gpio/gpio-pca953x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c index 83617fdc661d..0dc96419efe3 100644 --- a/drivers/gpio/gpio-pca953x.c +++ b/drivers/gpio/gpio-pca953x.c @@ -289,7 +289,7 @@ static bool pca953x_volatile_register(struct device *dev, unsigned int reg) return pca953x_check_register(chip, reg, bank); } -const struct regmap_config pca953x_i2c_regmap = { +static const struct regmap_config pca953x_i2c_regmap = { .reg_bits = 8, .val_bits = 8, |