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

drivers/scsi/sym53c8xx_2/sym_glue.c: rename skip_spaces() to sym_skip_spaces()

To avoid a collision with the newly-added kernel-wide skip_spaces().

Signed-off-by: André Goddard Rosa <andre.goddard@gmail.com>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by

Andrew Morton and committed by
Linus Torvalds
4e62b093 7707e61c

+2 -2
+2 -2
drivers/scsi/sym53c8xx_2/sym_glue.c
··· 984 984 } 985 985 } 986 986 987 - static int skip_spaces(char *ptr, int len) 987 + static int sym_skip_spaces(char *ptr, int len) 988 988 { 989 989 int cnt, c; 990 990 ··· 1012 1012 } 1013 1013 1014 1014 #define SKIP_SPACES(ptr, len) \ 1015 - if ((arg_len = skip_spaces(ptr, len)) < 1) \ 1015 + if ((arg_len = sym_skip_spaces(ptr, len)) < 1) \ 1016 1016 return -EINVAL; \ 1017 1017 ptr += arg_len; len -= arg_len; 1018 1018