Prev: staging: hv: Fixed bounce kmap problem by using correct index
Next: staging: hv: Increased storvsc ringbuffer and max_io_requests
From: tip-bot for H. Peter Anvin on 3 Aug 2010 13:50 Commit-ID: c0366f5f5c1615c4f70b1bd646149ba9233830b9 Gitweb: http://git.kernel.org/tip/c0366f5f5c1615c4f70b1bd646149ba9233830b9 Author: H. Peter Anvin <hpa(a)linux.intel.com> AuthorDate: Tue, 3 Aug 2010 10:09:56 -0700 Committer: H. Peter Anvin <hpa(a)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(a)linux.intel.com> Cc: Mark Kelly <mark(a)bifferos.com> Cc: Florian Fainelli <florian(a)openwrt.org> LKML-Reference: <201008031815.09764.florian(a)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, }; -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |