diff options
author | David S. Miller <davem@davemloft.net> | 2008-09-12 02:14:52 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-09-12 02:14:52 -0400 |
commit | 4845afac95a653f8e64c45024cbb94264df54b8f (patch) | |
tree | 0681cb6a1625d9957225ce4d1f33b4152660a98a /arch/sparc64 | |
parent | 3fbe36d8da0081dbee23c5d477d8142fab98c42e (diff) |
sparc64: Add __arch64__ to CHECKFLAGS
Otherwise sparse doesn't work. The 32 vs. 64 header ifdef
used under arch/sparc/include/asm/ is:
#if defined(__sparc__) && defined(__arch64__)
And that doesn't work for sparse unless we give it __arch64__
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'arch/sparc64')
-rw-r--r-- | arch/sparc64/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sparc64/Makefile b/arch/sparc64/Makefile index b785a395b12f..c7214abc0d84 100644 --- a/arch/sparc64/Makefile +++ b/arch/sparc64/Makefile | |||
@@ -7,7 +7,7 @@ | |||
7 | # Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz) | 7 | # Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz) |
8 | # | 8 | # |
9 | 9 | ||
10 | CHECKFLAGS += -D__sparc__ -D__sparc_v9__ -m64 | 10 | CHECKFLAGS += -D__sparc__ -D__sparc_v9__ -D__arch64__ -m64 |
11 | 11 | ||
12 | # Undefine sparc when processing vmlinux.lds - it is used | 12 | # Undefine sparc when processing vmlinux.lds - it is used |
13 | # And teach CPP we are doing 64 bit builds (for this case) | 13 | # And teach CPP we are doing 64 bit builds (for this case) |