diff options
author | David S. Miller <davem@davemloft.net> | 2012-05-14 22:02:08 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-05-15 10:22:00 -0700 |
commit | c7020eb4661eaf568a277056258a387ef88a9349 (patch) | |
tree | 4875adf04fa47e5da1a2cc7c2376ce876b784c09 /arch/sparc/include/asm/elf_32.h | |
parent | 834b97f15455097ccad36e098950b8ad2435f611 (diff) |
sparc32: Remove cypress cpu support.
It's the one aberration in v8, the only cpu that
didn't actually have hardware multiply and divide
instructions.
Signed-off-by: David S. Miller <davem@davemloft.net>
Acked-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'arch/sparc/include/asm/elf_32.h')
-rw-r--r-- | arch/sparc/include/asm/elf_32.h | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/arch/sparc/include/asm/elf_32.h b/arch/sparc/include/asm/elf_32.h index b5beb114d22..2d4d755cba9 100644 --- a/arch/sparc/include/asm/elf_32.h +++ b/arch/sparc/include/asm/elf_32.h @@ -118,15 +118,9 @@ typedef struct { instruction set this cpu supports. This can NOT be done in userspace on Sparc. */ -/* Most sun4m's have them all. - * XXX This is gross, set some global variable at boot time. -DaveM - */ -#define ELF_HWCAP ((HWCAP_SPARC_FLUSH | HWCAP_SPARC_STBAR | \ - HWCAP_SPARC_SWAP | \ - ((srmmu_modtype != Cypress && \ - srmmu_modtype != Cypress_vE && \ - srmmu_modtype != Cypress_vD) ? \ - HWCAP_SPARC_MULDIV : 0))) +/* Most sun4m's have them all. */ +#define ELF_HWCAP (HWCAP_SPARC_FLUSH | HWCAP_SPARC_STBAR | \ + HWCAP_SPARC_SWAP | HWCAP_SPARC_MULDIV) /* This yields a string that ld.so will use to load implementation specific libraries for optimization. This is more specific in |