diff options
Diffstat (limited to 'src/cpu/intel/slot_2')
-rw-r--r-- | src/cpu/intel/slot_2/chip.h | 2 | ||||
-rw-r--r-- | src/cpu/intel/slot_2/slot_2.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/intel/slot_2/chip.h b/src/cpu/intel/slot_2/chip.h index 04a128d894..6143302144 100644 --- a/src/cpu/intel/slot_2/chip.h +++ b/src/cpu/intel/slot_2/chip.h @@ -1,4 +1,4 @@ -extern struct chip_control cpu_intel_slot_2_control; +extern struct chip_operations cpu_intel_slot_2_control; struct cpu_intel_slot_2_config { }; diff --git a/src/cpu/intel/slot_2/slot_2.c b/src/cpu/intel/slot_2/slot_2.c index 2d4fb9373c..5752f3dbb9 100644 --- a/src/cpu/intel/slot_2/slot_2.c +++ b/src/cpu/intel/slot_2/slot_2.c @@ -2,6 +2,6 @@ #include "chip.h" -struct chip_control cpu_intel_slot_2_control = { +struct chip_operations cpu_intel_slot_2_control = { .name = "slot 2", }; |