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

spi: loopback-test: mark rx_ranges_cmp() static

We get 1 warning when building kernel with W=1:
drivers/spi/spi-loopback-test.c:408:5: warning: no previous prototype for 'rx_ranges_cmp' [-Wmissing-prototypes]

In fact, this function is only used in the file in which it is
declared and don't need a declaration, but can be made static.
So this patch marks it 'static'.

Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Baoyou Xie and committed by
Mark Brown
dc34b89a 29b4817d

+1 -1
+1 -1
drivers/spi/spi-loopback-test.c
··· 405 405 u8 *end; 406 406 }; 407 407 408 - int rx_ranges_cmp(void *priv, struct list_head *a, struct list_head *b) 408 + static int rx_ranges_cmp(void *priv, struct list_head *a, struct list_head *b) 409 409 { 410 410 struct rx_ranges *rx_a = list_entry(a, struct rx_ranges, list); 411 411 struct rx_ranges *rx_b = list_entry(b, struct rx_ranges, list);