diff options
Diffstat (limited to 'arch/x86_64/kernel/setup.c')
-rw-r--r-- | arch/x86_64/kernel/setup.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/x86_64/kernel/setup.c b/arch/x86_64/kernel/setup.c index 33e77ec8da22..6810690d6045 100644 --- a/arch/x86_64/kernel/setup.c +++ b/arch/x86_64/kernel/setup.c | |||
@@ -44,6 +44,7 @@ | |||
44 | #include <linux/mmzone.h> | 44 | #include <linux/mmzone.h> |
45 | #include <linux/kexec.h> | 45 | #include <linux/kexec.h> |
46 | #include <linux/cpufreq.h> | 46 | #include <linux/cpufreq.h> |
47 | #include <linux/dmi.h> | ||
47 | 48 | ||
48 | #include <asm/mtrr.h> | 49 | #include <asm/mtrr.h> |
49 | #include <asm/uaccess.h> | 50 | #include <asm/uaccess.h> |
@@ -1392,3 +1393,11 @@ struct seq_operations cpuinfo_op = { | |||
1392 | .stop = c_stop, | 1393 | .stop = c_stop, |
1393 | .show = show_cpuinfo, | 1394 | .show = show_cpuinfo, |
1394 | }; | 1395 | }; |
1396 | |||
1397 | static int __init run_dmi_scan(void) | ||
1398 | { | ||
1399 | dmi_scan_machine(); | ||
1400 | return 0; | ||
1401 | } | ||
1402 | core_initcall(run_dmi_scan); | ||
1403 | |||