Revision: linuxbios@linuxbios.org--devel/freebios--devel--2.0--patch-16
Creator: Ronald G. Minnich <rminnich@lanl.gov> add cpu directory and files for sc520 git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1934 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
parent
613c72abc4
commit
c8c720a801
|
@ -0,0 +1,7 @@
|
||||||
|
uses CONFIG_CHIP_NAME
|
||||||
|
|
||||||
|
if CONFIG_CHIP_NAME
|
||||||
|
config chip.h
|
||||||
|
end
|
||||||
|
object sc520.o
|
||||||
|
|
|
@ -0,0 +1,4 @@
|
||||||
|
extern struct chip_operations cpu_amd_sc520_ops;
|
||||||
|
|
||||||
|
struct cpu_amd_sc520_config {
|
||||||
|
};
|
|
@ -0,0 +1,7 @@
|
||||||
|
#include <device/device.h>
|
||||||
|
#include "chip.h"
|
||||||
|
|
||||||
|
|
||||||
|
struct chip_operations cpu_amd_sc520_ops = {
|
||||||
|
CHIP_NAME("AMD SC520")
|
||||||
|
};
|
Loading…
Reference in New Issue