diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-23 15:37:02 -0700 | 
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-09-23 15:37:02 -0700 | 
| 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;  char *depfile;  char *cmdline; -void usage(void) +static void usage(void)  {  	fprintf(stderr, "Usage: fixdep <depfile> <target> <cmdline>\n");  	exit(1); @@ -133,7 +133,7 @@ void usage(void)  /*   * Print out the commandline prefixed with cmd_<target filename> :=   */ -void print_cmdline(void) +static void print_cmdline(void)  {  	printf("cmd_%s := %s\n\n", target, cmdline);  } @@ -146,7 +146,7 @@ int    len_config  = 0;   * Grow the configuration string to a desired length.   * Usually the first growth is plenty.   */ -void grow_config(int len) +static void grow_config(int len)  {  	while (len_config + len > size_config) {  		if (size_config == 0) @@ -162,7 +162,7 @@ void grow_config(int len)  /*   * Lookup a value in the configuration string.   */ -int is_defined_config(const char * name, int len) +static int is_defined_config(const char * name, int len)  {  	const char * pconfig;  	const char * plast = str_config + len_config - len; @@ -178,7 +178,7 @@ int is_defined_config(const char * name, int len)  /*   * Add a new value to the configuration string.   */ -void define_config(const char * name, int len) +static void define_config(const char * name, int len)  {  	grow_config(len + 1); @@ -190,7 +190,7 @@ void define_config(const char * name, int len)  /*   * Clear the set of configuration strings.   */ -void clear_config(void) +static void clear_config(void)  {  	len_config = 0;  	define_config("", 0); @@ -199,7 +199,7 @@ void clear_config(void)  /*   * Record the use of a CONFIG_* word.   */ -void use_config(char *m, int slen) +static void use_config(char *m, int slen)  {  	char s[PATH_MAX];  	char *p; @@ -220,7 +220,7 @@ void use_config(char *m, int slen)  	printf("    $(wildcard include/config/%s.h) \\\n", s);  } -void parse_config_file(char *map, size_t len) +static void parse_config_file(char *map, size_t len)  {  	int *end = (int *) (map + len);  	/* start at +1, so that p can never be < map */ @@ -254,7 +254,7 @@ void parse_config_file(char *map, size_t len)  }  /* test is s ends in sub */ -int strrcmp(char *s, char *sub) +static int strrcmp(char *s, char *sub)  {  	int slen = strlen(s);  	int sublen = strlen(sub); @@ -265,7 +265,7 @@ int strrcmp(char *s, char *sub)  	return memcmp(s + slen - sublen, sub, sublen);  } -void do_config_file(char *filename) +static void do_config_file(char *filename)  {  	struct stat st;  	int fd; @@ -296,7 +296,7 @@ void do_config_file(char *filename)  	close(fd);  } -void parse_dep_file(void *map, size_t len) +static void parse_dep_file(void *map, size_t len)  {  	char *m = map;  	char *end = m + len; @@ -336,7 +336,7 @@ void parse_dep_file(void *map, size_t len)  	printf("$(deps_%s):\n", target);  } -void print_deps(void) +static void print_deps(void)  {  	struct stat st;  	int fd; @@ -368,7 +368,7 @@ void print_deps(void)  	close(fd);  } -void traps(void) +static void traps(void)  {  	static char test[] __attribute__((aligned(sizeof(int)))) = "CONF";  	int *p = (int *)test; | 
