diff options
| author | Ladinu Chandrasinghe <ladinu.pub@gmail.com> | 2009-09-22 19:43:42 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-23 10:39:28 -0400 |
| commit | b7ed698cc9d556306a4088c238e2ea9311ea2cb3 (patch) | |
| tree | b0aadfcf2d2c1c1454bdf8f194f7ff94e5d21c46 /scripts | |
| parent | 912e837aef72a3dd263dafc3717d92bbc1211a53 (diff) | |
Documentation/: fix warnings from -Wmissing-prototypes in HOSTCFLAGS
Fix up -Wmissing-prototypes in compileable userspace code, mainly under
Documentation/.
Signed-off-by: Ladinu Chandrasinghe <ladinu.pub@gmail.com>
Signed-off-by: Trevor Keith <tsrk@tsrk.net>
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/genksyms/genksyms.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/genksyms/genksyms.c b/scripts/genksyms/genksyms.c index 3a8297b5184c..af6b8363a2d5 100644 --- a/scripts/genksyms/genksyms.c +++ b/scripts/genksyms/genksyms.c | |||
| @@ -176,7 +176,7 @@ static int is_unknown_symbol(struct symbol *sym) | |||
| 176 | strcmp(defn->string, "{") == 0); | 176 | strcmp(defn->string, "{") == 0); |
| 177 | } | 177 | } |
| 178 | 178 | ||
| 179 | struct symbol *__add_symbol(const char *name, enum symbol_type type, | 179 | static struct symbol *__add_symbol(const char *name, enum symbol_type type, |
| 180 | struct string_list *defn, int is_extern, | 180 | struct string_list *defn, int is_extern, |
| 181 | int is_reference) | 181 | int is_reference) |
| 182 | { | 182 | { |
| @@ -265,7 +265,7 @@ struct symbol *add_symbol(const char *name, enum symbol_type type, | |||
| 265 | return __add_symbol(name, type, defn, is_extern, 0); | 265 | return __add_symbol(name, type, defn, is_extern, 0); |
| 266 | } | 266 | } |
| 267 | 267 | ||
| 268 | struct symbol *add_reference_symbol(const char *name, enum symbol_type type, | 268 | static struct symbol *add_reference_symbol(const char *name, enum symbol_type type, |
| 269 | struct string_list *defn, int is_extern) | 269 | struct string_list *defn, int is_extern) |
| 270 | { | 270 | { |
| 271 | return __add_symbol(name, type, defn, is_extern, 1); | 271 | return __add_symbol(name, type, defn, is_extern, 1); |
| @@ -313,7 +313,7 @@ static int equal_list(struct string_list *a, struct string_list *b) | |||
| 313 | 313 | ||
| 314 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) | 314 | #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) |
| 315 | 315 | ||
| 316 | struct string_list *read_node(FILE *f) | 316 | static struct string_list *read_node(FILE *f) |
| 317 | { | 317 | { |
| 318 | char buffer[256]; | 318 | char buffer[256]; |
| 319 | struct string_list node = { | 319 | struct string_list node = { |
