socket 939

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2437 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Yinghai Lu 2006-10-04 21:04:49 +00:00
parent 8d22a5dc69
commit 15b8ea7473
3 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,9 @@
uses CONFIG_CHIP_NAME
if CONFIG_CHIP_NAME
config chip.h
end
object socket_939.o
dir /cpu/amd/model_fxx

View File

@ -0,0 +1,4 @@
extern struct chip_operations cpu_amd_socket_939_ops;
struct cpu_amd_socket_939_config {
};

View File

@ -0,0 +1,6 @@
#include <device/device.h>
#include "chip.h"
struct chip_operations cpu_amd_socket_939_ops = {
CHIP_NAME("socket 939")
};