pinctrl: nomadik: hide nmk_gpio_get_mode when unused
authorArnd Bergmann <arnd@arndb.de>
Tue, 3 May 2016 15:26:53 +0000 (17:26 +0200)
committerLinus Walleij <linus.walleij@linaro.org>
Mon, 9 May 2016 09:58:57 +0000 (11:58 +0200)
commitcaee57ec71e1a0cb50b6028c706cfe541dcb080a
treea6d2e273ac2e4384591319a073da25a72dba724d
parent9d814d410ddc61426a852b45ad514f3b924b9164
pinctrl: nomadik: hide nmk_gpio_get_mode when unused

nmk_gpio_get_mode is only used in one place, and that is conditionally
compiled if DEBUG_FS is enabled. A recent cleanup has marked the
definition 'static', which now leads to a warning:

drivers/pinctrl/nomadik/pinctrl-nomadik.c:614:12: error: 'nmk_gpio_get_mode' defined but not used [-Werror=unused-function]
 static int nmk_gpio_get_mode(struct nmk_gpio_chip *nmk_chip, int offset)
            ^~~~~~~~~~~~~~~~~

Moving the function itself inside the #ifdef shuts it up again.

Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Fixes: 5e81e0a0913c ("pinctrl: nomadik: use BIT() with offsets consequently")
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/pinctrl/nomadik/pinctrl-nomadik.c