mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-03-29 10:47:42 +08:00
gpio: pxa: remove unused gpio_is_pxa_type function
clang with W=1 reports
drivers/gpio/gpio-pxa.c:174:19: error: unused function
'gpio_is_pxa_type' [-Werror,-Wunused-function]
static inline int gpio_is_pxa_type(int type)
^
This function is not used, so remove it.
Signed-off-by: Tom Rix <trix@redhat.com>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
This commit is contained in:
committed by
Bartosz Golaszewski
parent
03810031c9
commit
a7400a4816
@@ -171,11 +171,6 @@ static inline struct pxa_gpio_bank *gpio_to_pxabank(struct gpio_chip *c,
|
||||
return chip_to_pxachip(c)->banks + gpio / 32;
|
||||
}
|
||||
|
||||
static inline int gpio_is_pxa_type(int type)
|
||||
{
|
||||
return (type & MMP_GPIO) == 0;
|
||||
}
|
||||
|
||||
static inline int gpio_is_mmp_type(int type)
|
||||
{
|
||||
return (type & MMP_GPIO) != 0;
|
||||
|
||||
Reference in New Issue
Block a user