Fix a build warning in scripts/mod/file2alias.c
authorDaniel Tang <dt.tangr@gmail.com>
Sun, 9 Jun 2013 02:33:55 +0000 (12:33 +1000)
committerMichal Marek <mmarek@suse.cz>
Wed, 3 Jul 2013 12:30:40 +0000 (14:30 +0200)
commit04130cc973a96df33b1429024fd6dec59fa35a84
treebf7d1df446dce7eba88285b6a918914a8ce0e65e
parentbd70134396622ea50b14e34dae0810879884d553
Fix a build warning in scripts/mod/file2alias.c

On some systems, __used is already defined in sys/cdefs.h and causes
a build warning:

scripts/mod/file2alias.c:85:1: warning: "__used" redefined
In file included from /usr/include/stdio.h:64,
                 from scripts/mod/modpost.h:1,
                  from scripts/mod/file2alias.c:13:
  /usr/include/sys/cdefs.h:146:1: warning: this is the location of the previous definition

This adds an extra check before defining the __used macro to see if
the macro was already defined elsewhere.

Signed-off-by: Daniel Tang <dt.tangr@gmail.com>
Signed-off-by: Michal Marek <mmarek@suse.cz>
scripts/mod/file2alias.c