summary refs log tree commit diff
path: root/arch/x86/kernel/cpuid.c
diff options
context:
space:
mode:
authorRuss Anderson <rja@sgi.com>2010-01-26 20:37:22 -0600
committerH. Peter Anvin <hpa@zytor.com>2010-01-26 23:52:38 -0800
commitda482474b8396e1a099c37ffc6541b78775aedb4 (patch)
treebc236d38ba1c6d5319eeafb02ed8a3d7bc4dd9aa /arch/x86/kernel/cpuid.c
parentb160091802d4a76dd063facb09fcf10bf5d5d747 (diff)
downloadlinux-da482474b8396e1a099c37ffc6541b78775aedb4.tar.gz
x86, msr/cpuid: Pass the number of minors when unregistering MSR and CPUID drivers.
Pass the number of minors when unregistering MSR and CPUID drivers.

Reported-by: Dean Nelson <dnelson@redhat.com>
Signed-off-by: Dean Nelson <dnelson@redhat.com>
LKML-Reference: <20100127023722.GA22305@sgi.com>
Signed-off-by: Russ Anderson <rja@sgi.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'arch/x86/kernel/cpuid.c')
-rw-r--r--arch/x86/kernel/cpuid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/cpuid.c b/arch/x86/kernel/cpuid.c
index cb27fd6136c9..83e5e628de73 100644
--- a/arch/x86/kernel/cpuid.c
+++ b/arch/x86/kernel/cpuid.c
@@ -229,7 +229,7 @@ static void __exit cpuid_exit(void)
 	for_each_online_cpu(cpu)
 		cpuid_device_destroy(cpu);
 	class_destroy(cpuid_class);
-	unregister_chrdev(CPUID_MAJOR, "cpu/cpuid");
+	__unregister_chrdev(CPUID_MAJOR, 0, NR_CPUS, "cpu/cpuid");
 	unregister_hotcpu_notifier(&cpuid_class_cpu_notifier);
 }