Skip to content

Commit

Permalink
spi: loopback-test: mark rx_ranges_cmp() static
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Baoyou Xie authored and Mark Brown committed Sep 1, 2016
1 parent 29b4817 commit dc34b89
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/spi/spi-loopback-test.c
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ struct rx_ranges {
u8 *end;
};

int rx_ranges_cmp(void *priv, struct list_head *a, struct list_head *b)
static int rx_ranges_cmp(void *priv, struct list_head *a, struct list_head *b)
{
struct rx_ranges *rx_a = list_entry(a, struct rx_ranges, list);
struct rx_ranges *rx_b = list_entry(b, struct rx_ranges, list);
Expand Down

0 comments on commit dc34b89

Please sign in to comment.