Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

gpio: it87: remove unused code

Fix the following clang warning:

drivers/gpio/gpio-it87.c:128:20: warning: unused function 'superio_outw'
[-Wunused-function].

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Acked-by: Simon Guinot <simon.guinot@sequanux.org>
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>

authored by

Jiapeng Chong and committed by
Bartosz Golaszewski
5fe70673 abd7a8ea

-8
-8
drivers/gpio/gpio-it87.c
··· 125 125 return val; 126 126 } 127 127 128 - static inline void superio_outw(int val, int reg) 129 - { 130 - outb(reg++, REG); 131 - outb(val >> 8, VAL); 132 - outb(reg, REG); 133 - outb(val, VAL); 134 - } 135 - 136 128 static inline void superio_set_mask(int mask, int reg) 137 129 { 138 130 u8 curr_val = superio_inb(reg);