diff options
author | Adrian Bunk <bunk@kernel.org> | 2008-07-17 14:18:54 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2008-07-21 20:39:35 -0400 |
commit | 542a3a3bc9d9c176f7cb332948df1cb8ff91fa64 (patch) | |
tree | fd472e46578cb52997e24179e0764db52f61c850 /arch/powerpc | |
parent | bf312ccc04ab09d674cd1b0f228e76201d94483b (diff) |
powerpc/boot: Change spaces to tabs
For C code spaces versus tabs is just a religious issue,
but for Makefiles it actually matters.
This patch fixes he following errors:
/home/bunk/linux/kernel-2.6/git/linux-2.6/arch/powerpc/boot/Makefile:166: *** missing separator. Stop.
/home/bunk/linux/kernel-2.6/git/linux-2.6/arch/powerpc/boot/Makefile:171: *** missing separator. Stop.
Since this was inside an ifdef DTC_GENPARSER it was not a problem unless
someone wanted to regenerate the shipped generated files.
Signed-off-by: Adrian Bunk <bunk@kernel.org>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/boot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/boot/Makefile b/arch/powerpc/boot/Makefile index 19f83c8f219d..14174aa24074 100644 --- a/arch/powerpc/boot/Makefile +++ b/arch/powerpc/boot/Makefile | |||
@@ -163,12 +163,12 @@ quiet_cmd_flex = FLEX $@ | |||
163 | cmd_flex = $(FLEX) -o$@ $<; cp $@ $@_shipped | 163 | cmd_flex = $(FLEX) -o$@ $<; cp $@ $@_shipped |
164 | 164 | ||
165 | $(obj)/dtc-src/dtc-parser.tab.c: $(src)/dtc-src/dtc-parser.y FORCE | 165 | $(obj)/dtc-src/dtc-parser.tab.c: $(src)/dtc-src/dtc-parser.y FORCE |
166 | $(call if_changed,bison) | 166 | $(call if_changed,bison) |
167 | 167 | ||
168 | $(obj)/dtc-src/dtc-parser.tab.h: $(obj)/dtc-src/dtc-parser.tab.c | 168 | $(obj)/dtc-src/dtc-parser.tab.h: $(obj)/dtc-src/dtc-parser.tab.c |
169 | 169 | ||
170 | $(obj)/dtc-src/dtc-lexer.lex.c: $(src)/dtc-src/dtc-lexer.l FORCE | 170 | $(obj)/dtc-src/dtc-lexer.lex.c: $(src)/dtc-src/dtc-lexer.l FORCE |
171 | $(call if_changed,flex) | 171 | $(call if_changed,flex) |
172 | endif | 172 | endif |
173 | 173 | ||
174 | ############# | 174 | ############# |