diff options
author | 2013-03-22 21:32:31 +0000 | |
---|---|---|
committer | 2013-03-22 21:32:31 +0000 | |
commit | 8302f49cff1bfd5fb2447a30faf3248d779e62fb (patch) | |
tree | cb13a316f14b1f2030cb581d373106e9800a0a20 | |
parent | Use different setup functions for ARM9E and ARM10 to fix an undefined (diff) | |
download | wireguard-openbsd-8302f49cff1bfd5fb2447a30faf3248d779e62fb.tar.xz wireguard-openbsd-8302f49cff1bfd5fb2447a30faf3248d779e62fb.zip |
ARM Cortex A8 was defined twice, we don't need that.
ok miod@
-rw-r--r-- | sys/arch/arm/arm/cpu.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/arm/arm/cpu.c b/sys/arch/arm/arm/cpu.c index e3f14e15e4e..f98dbafdddd 100644 --- a/sys/arch/arm/arm/cpu.c +++ b/sys/arch/arm/arm/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.15 2013/01/18 00:20:20 patrick Exp $ */ +/* $OpenBSD: cpu.c,v 1.16 2013/03/22 21:32:31 patrick Exp $ */ /* $NetBSD: cpu.c,v 1.56 2004/04/14 04:01:49 bsh Exp $ */ @@ -302,8 +302,6 @@ const struct cpuidtab cpuids[] = { generic_steppings }, { CPU_ID_CORTEX_A8, CPU_CLASS_ARMv7, "ARM Cortex A8", generic_steppings }, - { CPU_ID_CORTEX_A8, CPU_CLASS_ARMv7, "ARM Cortex A8", - generic_steppings }, { CPU_ID_CORTEX_A8_R1, CPU_CLASS_ARMv7, "ARM Cortex A8 R1", generic_steppings }, { CPU_ID_CORTEX_A8_R2, CPU_CLASS_ARMv7, "ARM Cortex A8 R2", |