socket 939
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2437 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
8d22a5dc69
commit
15b8ea7473
|
@ -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
|
|
@ -0,0 +1,4 @@
|
||||||
|
extern struct chip_operations cpu_amd_socket_939_ops;
|
||||||
|
|
||||||
|
struct cpu_amd_socket_939_config {
|
||||||
|
};
|
|
@ -0,0 +1,6 @@
|
||||||
|
#include <device/device.h>
|
||||||
|
#include "chip.h"
|
||||||
|
|
||||||
|
struct chip_operations cpu_amd_socket_939_ops = {
|
||||||
|
CHIP_NAME("socket 939")
|
||||||
|
};
|
Loading…
Reference in New Issue