]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commitdiff
pinctrl: sx150x: make struct sx150x_regmap_config static
authorColin Ian King <colin.king@canonical.com>
Thu, 5 Oct 2017 10:23:56 +0000 (11:23 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 9 Oct 2017 21:02:36 +0000 (23:02 +0200)
The structure sx150x_regmap_config is local to the source and does not
need to be in global scope, so make it static.

Cleans up sparse warning:
symbol 'sx150x_regmap_config' was not declared. Should it be static?

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/pinctrl-sx150x.c

index 7450f511844569d32b0bda6cefa3423a1cbb5eba..c5ab8cef942d68dc99249db9e29d28d7c84eaffc 100644 (file)
@@ -1087,7 +1087,7 @@ static bool sx150x_reg_volatile(struct device *dev, unsigned int reg)
        return reg == pctl->data->reg_irq_src || reg == pctl->data->reg_data;
 }
 
-const struct regmap_config sx150x_regmap_config = {
+static const struct regmap_config sx150x_regmap_config = {
        .reg_bits = 8,
        .val_bits = 32,