diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2008-08-01 12:11:00 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2008-08-01 12:11:00 +0000 |
commit | 5a522d4a42a8fe9da6fef8bab5b47df42a8f722d (patch) | |
tree | a87747dcbc156cc2239b490d82c270b1b3edc56e /src/cpu/intel/model_6xx | |
parent | ac555b1c69a094929cdf057b718446b85cc01518 (diff) |
match against all steppings of a CPU model, because these are _model_ drivers.
(trivial)
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Stefan Reinauer <stepan@coresystems.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3455 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/intel/model_6xx')
-rw-r--r-- | src/cpu/intel/model_6xx/model_6xx_init.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/cpu/intel/model_6xx/model_6xx_init.c b/src/cpu/intel/model_6xx/model_6xx_init.c index df814c8467..2f50e46695 100644 --- a/src/cpu/intel/model_6xx/model_6xx_init.c +++ b/src/cpu/intel/model_6xx/model_6xx_init.c @@ -44,17 +44,21 @@ static struct device_operations cpu_dev_ops = { .init = model_6xx_init, }; static struct cpu_device_id cpu_table[] = { + { X86_VENDOR_INTEL, 0x0650 }, { X86_VENDOR_INTEL, 0x0652 }, - { X86_VENDOR_INTEL, 0x0665 }, /* Celeron (Mendocino) */ + { X86_VENDOR_INTEL, 0x0660 }, /* Celeron (Mendocino) */ + { X86_VENDOR_INTEL, 0x0665 }, { X86_VENDOR_INTEL, 0x0672 }, { X86_VENDOR_INTEL, 0x0673 }, + { X86_VENDOR_INTEL, 0x0680 }, { X86_VENDOR_INTEL, 0x0681 }, { X86_VENDOR_INTEL, 0x0683 }, { X86_VENDOR_INTEL, 0x0686 }, { X86_VENDOR_INTEL, 0x06A0 }, { X86_VENDOR_INTEL, 0x06A1 }, { X86_VENDOR_INTEL, 0x06A4 }, - { X86_VENDOR_INTEL, 0x06B4 }, /* Mobile Celeron FCBGA */ + { X86_VENDOR_INTEL, 0x06B0 }, /* Mobile Celeron FCBGA */ + { X86_VENDOR_INTEL, 0x06B4 }, { 0, 0 }, }; |