aboutsummaryrefslogtreecommitdiff
path: root/src/devices
diff options
context:
space:
mode:
authorGreg Watson <jarrah@users.sourceforge.net>2003-07-20 23:28:01 +0000
committerGreg Watson <jarrah@users.sourceforge.net>2003-07-20 23:28:01 +0000
commitd0580343b6c81697f0050b38ea36ee154d242ac2 (patch)
treeb2c838e68ddf833ddc0b4294a4c98f81daf817e1 /src/devices
parent9b4336cf418d22551bea09d93e1cee79281b110e (diff)
chip stuff
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@988 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/devices')
-rw-r--r--src/devices/chip.c15
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) {
+ }
+}