diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-23 18:37:02 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-23 18:37:02 -0400 |
commit | c37efa932598de5e30330a1414e34d9e082e0d9e (patch) | |
tree | 1e3b782d257fa39a54f583af3dc7c32d7cffc67d /scripts/basic/fixdep.c | |
parent | 9e12a7e7d89ad813d01092890010cf67d0f914bd (diff) | |
parent | abe1ee3a221d53778c3e58747bbec6e518e5471b (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next
* git://git.kernel.org/pub/scm/linux/kernel/git/sam/kbuild-next: (30 commits)
Use macros for .data.page_aligned section.
Use macros for .bss.page_aligned section.
Use new __init_task_data macro in arch init_task.c files.
kbuild: Don't define ALIGN and ENTRY when preprocessing linker scripts.
arm, cris, mips, sparc, powerpc, um, xtensa: fix build with bash 4.0
kbuild: add static to prototypes
kbuild: fail build if recordmcount.pl fails
kbuild: set -fconserve-stack option for gcc 4.5
kbuild: echo the record_mcount command
gconfig: disable "typeahead find" search in treeviews
kbuild: fix cc1 options check to ensure we do not use -fPIC when compiling
checkincludes.pl: add option to remove duplicates in place
markup_oops: use modinfo to avoid confusion with underscored module names
checkincludes.pl: provide usage helper
checkincludes.pl: close file as soon as we're done with it
ctags: usability fix
kernel hacking: move STRIP_ASM_SYMS from General
gitignore usr/initramfs_data.cpio.bz2 and usr/initramfs_data.cpio.lzma
kbuild: Check if linker supports the -X option
kbuild: introduce ld-option
...
Fix trivial conflict in scripts/basic/fixdep.c
Diffstat (limited to 'scripts/basic/fixdep.c')
-rw-r--r-- | scripts/basic/fixdep.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/scripts/basic/fixdep.c b/scripts/basic/fixdep.c index 8ab448611680..6bf21f83837d 100644 --- a/scripts/basic/fixdep.c +++ b/scripts/basic/fixdep.c | |||
@@ -124,7 +124,7 @@ char *target; | |||
124 | char *depfile; | 124 | char *depfile; |
125 | char *cmdline; | 125 | char *cmdline; |
126 | 126 | ||
127 | void usage(void) | 127 | static void usage(void) |
128 | { | 128 | { |
129 | fprintf(stderr, "Usage: fixdep <depfile> <target> <cmdline>\n"); | 129 | fprintf(stderr, "Usage: fixdep <depfile> <target> <cmdline>\n"); |
130 | exit(1); | 130 | exit(1); |
@@ -133,7 +133,7 @@ void usage(void) | |||
133 | /* | 133 | /* |
134 | * Print out the commandline prefixed with cmd_<target filename> := | 134 | * Print out the commandline prefixed with cmd_<target filename> := |
135 | */ | 135 | */ |
136 | void print_cmdline(void) | 136 | static void print_cmdline(void) |
137 | { | 137 | { |
138 | printf("cmd_%s := %s\n\n", target, cmdline); | 138 | printf("cmd_%s := %s\n\n", target, cmdline); |
139 | } | 139 | } |
@@ -146,7 +146,7 @@ int len_config = 0; | |||
146 | * Grow the configuration string to a desired length. | 146 | * Grow the configuration string to a desired length. |
147 | * Usually the first growth is plenty. | 147 | * Usually the first growth is plenty. |
148 | */ | 148 | */ |
149 | void grow_config(int len) | 149 | static void grow_config(int len) |
150 | { | 150 | { |
151 | while (len_config + len > size_config) { | 151 | while (len_config + len > size_config) { |
152 | if (size_config == 0) | 152 | if (size_config == 0) |
@@ -162,7 +162,7 @@ void grow_config(int len) | |||
162 | /* | 162 | /* |
163 | * Lookup a value in the configuration string. | 163 | * Lookup a value in the configuration string. |
164 | */ | 164 | */ |
165 | int is_defined_config(const char * name, int len) | 165 | static int is_defined_config(const char * name, int len) |
166 | { | 166 | { |
167 | const char * pconfig; | 167 | const char * pconfig; |
168 | const char * plast = str_config + len_config - len; | 168 | const char * plast = str_config + len_config - len; |
@@ -178,7 +178,7 @@ int is_defined_config(const char * name, int len) | |||
178 | /* | 178 | /* |
179 | * Add a new value to the configuration string. | 179 | * Add a new value to the configuration string. |
180 | */ | 180 | */ |
181 | void define_config(const char * name, int len) | 181 | static void define_config(const char * name, int len) |
182 | { | 182 | { |
183 | grow_config(len + 1); | 183 | grow_config(len + 1); |
184 | 184 | ||
@@ -190,7 +190,7 @@ void define_config(const char * name, int len) | |||
190 | /* | 190 | /* |
191 | * Clear the set of configuration strings. | 191 | * Clear the set of configuration strings. |
192 | */ | 192 | */ |
193 | void clear_config(void) | 193 | static void clear_config(void) |
194 | { | 194 | { |
195 | len_config = 0; | 195 | len_config = 0; |
196 | define_config("", 0); | 196 | define_config("", 0); |
@@ -199,7 +199,7 @@ void clear_config(void) | |||
199 | /* | 199 | /* |
200 | * Record the use of a CONFIG_* word. | 200 | * Record the use of a CONFIG_* word. |
201 | */ | 201 | */ |
202 | void use_config(char *m, int slen) | 202 | static void use_config(char *m, int slen) |
203 | { | 203 | { |
204 | char s[PATH_MAX]; | 204 | char s[PATH_MAX]; |
205 | char *p; | 205 | char *p; |
@@ -220,7 +220,7 @@ void use_config(char *m, int slen) | |||
220 | printf(" $(wildcard include/config/%s.h) \\\n", s); | 220 | printf(" $(wildcard include/config/%s.h) \\\n", s); |
221 | } | 221 | } |
222 | 222 | ||
223 | void parse_config_file(char *map, size_t len) | 223 | static void parse_config_file(char *map, size_t len) |
224 | { | 224 | { |
225 | int *end = (int *) (map + len); | 225 | int *end = (int *) (map + len); |
226 | /* start at +1, so that p can never be < map */ | 226 | /* start at +1, so that p can never be < map */ |
@@ -254,7 +254,7 @@ void parse_config_file(char *map, size_t len) | |||
254 | } | 254 | } |
255 | 255 | ||
256 | /* test is s ends in sub */ | 256 | /* test is s ends in sub */ |
257 | int strrcmp(char *s, char *sub) | 257 | static int strrcmp(char *s, char *sub) |
258 | { | 258 | { |
259 | int slen = strlen(s); | 259 | int slen = strlen(s); |
260 | int sublen = strlen(sub); | 260 | int sublen = strlen(sub); |
@@ -265,7 +265,7 @@ int strrcmp(char *s, char *sub) | |||
265 | return memcmp(s + slen - sublen, sub, sublen); | 265 | return memcmp(s + slen - sublen, sub, sublen); |
266 | } | 266 | } |
267 | 267 | ||
268 | void do_config_file(char *filename) | 268 | static void do_config_file(char *filename) |
269 | { | 269 | { |
270 | struct stat st; | 270 | struct stat st; |
271 | int fd; | 271 | int fd; |
@@ -296,7 +296,7 @@ void do_config_file(char *filename) | |||
296 | close(fd); | 296 | close(fd); |
297 | } | 297 | } |
298 | 298 | ||
299 | void parse_dep_file(void *map, size_t len) | 299 | static void parse_dep_file(void *map, size_t len) |
300 | { | 300 | { |
301 | char *m = map; | 301 | char *m = map; |
302 | char *end = m + len; | 302 | char *end = m + len; |
@@ -336,7 +336,7 @@ void parse_dep_file(void *map, size_t len) | |||
336 | printf("$(deps_%s):\n", target); | 336 | printf("$(deps_%s):\n", target); |
337 | } | 337 | } |
338 | 338 | ||
339 | void print_deps(void) | 339 | static void print_deps(void) |
340 | { | 340 | { |
341 | struct stat st; | 341 | struct stat st; |
342 | int fd; | 342 | int fd; |
@@ -368,7 +368,7 @@ void print_deps(void) | |||
368 | close(fd); | 368 | close(fd); |
369 | } | 369 | } |
370 | 370 | ||
371 | void traps(void) | 371 | static void traps(void) |
372 | { | 372 | { |
373 | static char test[] __attribute__((aligned(sizeof(int)))) = "CONF"; | 373 | static char test[] __attribute__((aligned(sizeof(int)))) = "CONF"; |
374 | int *p = (int *)test; | 374 | int *p = (int *)test; |