Commit-ID: c0366f5f5c1615c4f70b1bd646149ba9233830b9
Gitweb: http://git.kernel.org/tip/c0366f5f5c1615c4f70b1bd646149ba9233830b9
Author: H. Peter Anvin <hpa@linux.intel.com>
AuthorDate: Tue, 3 Aug 2010 10:09:56 -0700
Committer: H. Peter Anvin <hpa@linux.intel.com>
CommitDate: Tue, 3 Aug 2010 10:09:56 -0700
x86, cpu: RDC doesn't have CPUID, which is what c_ident is
c_ident is supposed to be a CPUID identifier, and RDC doesn't have
that.
Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Cc: Mark Kelly <mark@bifferos.com>
Cc: Florian Fainelli <florian@openwrt.org>
LKML-Reference: <201008031815.09764.florian@openwrt.org>
---
arch/x86/kernel/cpu/rdc.c | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/arch/x86/kernel/cpu/rdc.c b/arch/x86/kernel/cpu/rdc.c
index c2bcdcc..e5e241c 100644
--- a/arch/x86/kernel/cpu/rdc.c
+++ b/arch/x86/kernel/cpu/rdc.c
@@ -65,7 +65,6 @@ static void __cpuinit rdc_identify(struct cpuinfo_x86 *c)
static const struct cpu_dev __cpuinitconst rdc_cpu_dev = {
.c_vendor = "RDC",
- .c_ident = { "RDC" },
.c_identify = rdc_identify,
.c_x86_vendor = X86_VENDOR_RDC,
};
--