diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-30 21:15:43 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-03-30 21:15:43 -0400 |
commit | 923f79743c76583ed4684e2c80c8da51a7268af3 (patch) | |
tree | e523a04c6b4cdddf70cf4adec25fa4fbbdbc5f5a /scripts/dtc/dtc.c | |
parent | a7697b945e6e5025f184d6762e7285f1c498411d (diff) | |
parent | 7f3bd6c9cb8e9fa2b57bfa860cd3e734a28f48ed (diff) |
Merge branch 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild
Pull kbuild changes from Michal Marek:
- Unification of cmd_uimage among archs that use it
- make headers_check tries harder before reporting a missing
<linux/types.h> include
- kbuild portability fix for shells that do not support echo -e
- make clean descends into samples/
- setlocalversion grep fix
- modpost typo fix
- dtc warnings fix
* 'kbuild' of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild:
setlocalversion: Use "grep -q" instead of piping output to "read dummy"
modpost: fix ALL_INIT_DATA_SECTIONS
Kbuild: centralize MKIMAGE and cmd_uimage definitions
headers_check: recursively search for linux/types.h inclusion
scripts/Kbuild.include: Fix portability problem of "echo -e"
scripts: dtc: fix compile warnings
kbuild: clean up samples directory
kbuild: disable -Wmissing-field-initializers for W=1
Diffstat (limited to 'scripts/dtc/dtc.c')
-rw-r--r-- | scripts/dtc/dtc.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/scripts/dtc/dtc.c b/scripts/dtc/dtc.c index 451c92d31b19..2ef5e2e3dd38 100644 --- a/scripts/dtc/dtc.c +++ b/scripts/dtc/dtc.c | |||
@@ -101,7 +101,7 @@ int main(int argc, char *argv[]) | |||
101 | const char *outform = "dts"; | 101 | const char *outform = "dts"; |
102 | const char *outname = "-"; | 102 | const char *outname = "-"; |
103 | const char *depname = NULL; | 103 | const char *depname = NULL; |
104 | int force = 0, check = 0, sort = 0; | 104 | int force = 0, sort = 0; |
105 | const char *arg; | 105 | const char *arg; |
106 | int opt; | 106 | int opt; |
107 | FILE *outf = NULL; | 107 | FILE *outf = NULL; |
@@ -143,9 +143,6 @@ int main(int argc, char *argv[]) | |||
143 | case 'f': | 143 | case 'f': |
144 | force = 1; | 144 | force = 1; |
145 | break; | 145 | break; |
146 | case 'c': | ||
147 | check = 1; | ||
148 | break; | ||
149 | case 'q': | 146 | case 'q': |
150 | quiet++; | 147 | quiet++; |
151 | break; | 148 | break; |