s2735 half update
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1705 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
@ -7,4 +7,4 @@ dir /cpu/x86/lapic
|
||||
dir /cpu/x86/cache
|
||||
dir /cpu/intel/microcode
|
||||
dir /cpu/intel/hyperthreading
|
||||
driver model_f1x_init.o
|
||||
driver model_f2x_init.o
|
||||
|
@ -30,7 +30,7 @@ static uint32_t microcode_updates[] = {
|
||||
};
|
||||
|
||||
|
||||
static void model_f2x_init(device_t dev)
|
||||
static void model_f2x_init(device_t cpu)
|
||||
{
|
||||
/* Turn on caching if we haven't already */
|
||||
x86_enable_cache();
|
||||
@ -48,7 +48,7 @@ static void model_f2x_init(device_t dev)
|
||||
};
|
||||
|
||||
static struct device_operations cpu_dev_ops = {
|
||||
.init = model_f1x_init,
|
||||
.init = model_f2x_init,
|
||||
};
|
||||
static struct cpu_device_id cpu_table[] = {
|
||||
{ X86_VENDOR_INTEL, 0x0f22 },
|
||||
|
@ -1,4 +1,4 @@
|
||||
extern struct chip_operations cpu_intel_socket_mPGA604_533Mhz_control;
|
||||
extern struct chip_operations cpu_intel_socket_mPGA604_533Mhz_ops;
|
||||
|
||||
struct cpu_intel_socket_mPGA604_533Mhz_config {
|
||||
};
|
||||
|
@ -2,6 +2,6 @@
|
||||
#include "chip.h"
|
||||
|
||||
|
||||
struct chip_operations cpu_intel_socket_mPGA604_533Mhz_control = {
|
||||
struct chip_operations cpu_intel_socket_mPGA604_533Mhz_ops = {
|
||||
.name = "socket mPGA604_533Mhz",
|
||||
};
|
||||
|
Reference in New Issue
Block a user