summaryrefslogtreecommitdiff
path: root/src/southbridge/intel/i82801dbm/chip.h
diff options
context:
space:
mode:
authorEric Biederman <ebiederm@xmission.com>2004-10-16 09:13:23 +0000
committerEric Biederman <ebiederm@xmission.com>2004-10-16 09:13:23 +0000
commit858ac5c5cd299156cbe79be1cb50f2a7a582b61c (patch)
tree1ea77ed8191d3d3d268e28c0ecbbcd3154787422 /src/southbridge/intel/i82801dbm/chip.h
parent92986807bb589e2b98470155c580828bb1a2838b (diff)
- Make all ports use config.h for if they have chip_config or chip_info structures.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1684 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/southbridge/intel/i82801dbm/chip.h')
-rw-r--r--src/southbridge/intel/i82801dbm/chip.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/southbridge/intel/i82801dbm/chip.h b/src/southbridge/intel/i82801dbm/chip.h
new file mode 100644
index 0000000000..e1e3da0e6f
--- /dev/null
+++ b/src/southbridge/intel/i82801dbm/chip.h
@@ -0,0 +1,12 @@
+#ifndef I82801DBM_CHIP_H
+#define I82801DBM_CHIP_H
+
+struct southbridge_intel_i82801dbm_config
+{
+ int enable_usb;
+ int enable_native_ide;
+};
+struct chip_operations;
+extern struct chip_operations southbridge_intel_i82801dbm_ops;
+
+#endif /* I82801DBM_CHIP_H */