diff options
Diffstat (limited to 'src/cpu/intel/slot_2')
-rw-r--r-- | src/cpu/intel/slot_2/Config.lb | 3 | ||||
-rw-r--r-- | src/cpu/intel/slot_2/chip.h | 4 | ||||
-rw-r--r-- | src/cpu/intel/slot_2/slot_2.c | 7 |
3 files changed, 14 insertions, 0 deletions
diff --git a/src/cpu/intel/slot_2/Config.lb b/src/cpu/intel/slot_2/Config.lb new file mode 100644 index 0000000000..f39eb77702 --- /dev/null +++ b/src/cpu/intel/slot_2/Config.lb @@ -0,0 +1,3 @@ +config chip.h +object slot_2.o +dir /cpu/intel/model_6xx diff --git a/src/cpu/intel/slot_2/chip.h b/src/cpu/intel/slot_2/chip.h new file mode 100644 index 0000000000..04a128d894 --- /dev/null +++ b/src/cpu/intel/slot_2/chip.h @@ -0,0 +1,4 @@ +extern struct chip_control 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 new file mode 100644 index 0000000000..f47767b016 --- /dev/null +++ b/src/cpu/intel/slot_2/slot_2.c @@ -0,0 +1,7 @@ +#include <device/chip.h> +#include "chip.h" + + +struct chip_control cpu_intel_slot_2_control = { + .name = "slot 2", +}; |