diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2013-08-13 14:42:36 -0400 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2013-09-03 14:53:09 -0400 |
commit | 9a55fed4739d48829af359f575790840cc7e91dd (patch) | |
tree | 48b93086abe4cd23edc3c1cc212076f9e44b597a /arch/tile | |
parent | 729b25a4642001296b8c12a360459d61adf7d75c (diff) |
tile: check for correct compiler earlier in asm-offsets.c
If we wait until after including a bunch of other files, we
will have generated so much warning spew that it's hard to
notice the error about using the wrong compiler.
Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
Diffstat (limited to 'arch/tile')
-rw-r--r-- | arch/tile/kernel/asm-offsets.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/arch/tile/kernel/asm-offsets.c b/arch/tile/kernel/asm-offsets.c index 97ea6ac0a47b..375e7c321eef 100644 --- a/arch/tile/kernel/asm-offsets.c +++ b/arch/tile/kernel/asm-offsets.c | |||
@@ -14,13 +14,6 @@ | |||
14 | * Generates definitions from c-type structures used by assembly sources. | 14 | * Generates definitions from c-type structures used by assembly sources. |
15 | */ | 15 | */ |
16 | 16 | ||
17 | #include <linux/kbuild.h> | ||
18 | #include <linux/thread_info.h> | ||
19 | #include <linux/sched.h> | ||
20 | #include <linux/hardirq.h> | ||
21 | #include <linux/ptrace.h> | ||
22 | #include <hv/hypervisor.h> | ||
23 | |||
24 | /* Check for compatible compiler early in the build. */ | 17 | /* Check for compatible compiler early in the build. */ |
25 | #ifdef CONFIG_TILEGX | 18 | #ifdef CONFIG_TILEGX |
26 | # ifndef __tilegx__ | 19 | # ifndef __tilegx__ |
@@ -31,10 +24,17 @@ | |||
31 | # endif | 24 | # endif |
32 | #else | 25 | #else |
33 | # ifdef __tilegx__ | 26 | # ifdef __tilegx__ |
34 | # error Can not build TILEPro/TILE64 configurations with tilegx compiler | 27 | # error Can not build TILEPro configurations with tilegx compiler |
35 | # endif | 28 | # endif |
36 | #endif | 29 | #endif |
37 | 30 | ||
31 | #include <linux/kbuild.h> | ||
32 | #include <linux/thread_info.h> | ||
33 | #include <linux/sched.h> | ||
34 | #include <linux/hardirq.h> | ||
35 | #include <linux/ptrace.h> | ||
36 | #include <hv/hypervisor.h> | ||
37 | |||
38 | void foo(void) | 38 | void foo(void) |
39 | { | 39 | { |
40 | DEFINE(SINGLESTEP_STATE_BUFFER_OFFSET, | 40 | DEFINE(SINGLESTEP_STATE_BUFFER_OFFSET, |