diff options
author | Greg Watson <jarrah@users.sourceforge.net> | 2003-07-20 23:28:01 +0000 |
---|---|---|
committer | Greg Watson <jarrah@users.sourceforge.net> | 2003-07-20 23:28:01 +0000 |
commit | d0580343b6c81697f0050b38ea36ee154d242ac2 (patch) | |
tree | b2c838e68ddf833ddc0b4294a4c98f81daf817e1 /src/devices/chip.c | |
parent | 9b4336cf418d22551bea09d93e1cee79281b110e (diff) | |
download | coreboot-d0580343b6c81697f0050b38ea36ee154d242ac2.tar.xz |
chip stuff
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@988 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/devices/chip.c')
-rw-r--r-- | src/devices/chip.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/devices/chip.c b/src/devices/chip.c new file mode 100644 index 0000000000..d25c92e0d7 --- /dev/null +++ b/src/devices/chip.c @@ -0,0 +1,15 @@ +/* chips are arbitrary chips (superio, southbridge, etc.) + * They have private structures that define chip resources and default + * settings. They have four externally visible functions for control. + * They have a generic component which applies to all chips for + * path, etc. + */ + +#include <device/chip.h> + +void +chip_configure(struct chip *root, enum chip_pass pass) +{ + while (root) { + } +} |