aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpio/gpio-pca953x.c
diff options
context:
space:
mode:
authorWei Yongjun <weiyongjun1@huawei.com>2019-01-10 14:07:42 +0000
committerLinus Walleij <linus.walleij@linaro.org>2019-01-11 09:16:40 +0100
commitd04e779fb1dbeedf8a60b66d0d0048be4e65d366 (patch)
tree31a4d095842c2b63c1fd687309c000ce41a18128 /drivers/gpio/gpio-pca953x.c
parentgpiolib-acpi: Remove unnecessary WARN_ON from acpi_gpiochip_free_interrupts (diff)
downloadlinux-dev-d04e779fb1dbeedf8a60b66d0d0048be4e65d366.tar.xz
linux-dev-d04e779fb1dbeedf8a60b66d0d0048be4e65d366.zip
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/gpio-pca953x.c')
-rw-r--r--drivers/gpio/gpio-pca953x.c2
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,