diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2013-08-13 20:42:36 +0200 |
---|---|---|
committer | Chris Metcalf <cmetcalf@tilera.com> | 2013-09-03 20:53:09 +0200 |
commit | 9a55fed4739d48829af359f575790840cc7e91dd (patch) | |
tree | 48b93086abe4cd23edc3c1cc212076f9e44b597a /arch/tile | |
parent | tile: use standard 'generic-y' model for <asm/hw_irq.h> (diff) | |
download | linux-9a55fed4739d48829af359f575790840cc7e91dd.tar.xz linux-9a55fed4739d48829af359f575790840cc7e91dd.zip |
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 @@ * Generates definitions from c-type structures used by assembly sources. */ -#include <linux/kbuild.h> -#include <linux/thread_info.h> -#include <linux/sched.h> -#include <linux/hardirq.h> -#include <linux/ptrace.h> -#include <hv/hypervisor.h> - /* Check for compatible compiler early in the build. */ #ifdef CONFIG_TILEGX # ifndef __tilegx__ @@ -31,10 +24,17 @@ # endif #else # ifdef __tilegx__ -# error Can not build TILEPro/TILE64 configurations with tilegx compiler +# error Can not build TILEPro configurations with tilegx compiler # endif #endif +#include <linux/kbuild.h> +#include <linux/thread_info.h> +#include <linux/sched.h> +#include <linux/hardirq.h> +#include <linux/ptrace.h> +#include <hv/hypervisor.h> + void foo(void) { DEFINE(SINGLESTEP_STATE_BUFFER_OFFSET, |