aboutsummaryrefslogtreecommitdiff
path: root/src/superio/via/vt1211/chip.h
diff options
context:
space:
mode:
authorJonathan McDowell <noodles@earth.li>2005-08-08 08:16:23 +0000
committerJonathan McDowell <noodles@earth.li>2005-08-08 08:16:23 +0000
commitdc2454eb944c2ea9201bd650d7bc9942d4653a6c (patch)
tree43be72a4df1429321c87e3c65c372e8ab1d45347 /src/superio/via/vt1211/chip.h
parent1950783e00ab866ea2c8d2eba7527cab7ec57747 (diff)
Clean up vt1211 SuperIO support and make the EPIA-M config use it.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@2003 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/superio/via/vt1211/chip.h')
-rw-r--r--src/superio/via/vt1211/chip.h15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/superio/via/vt1211/chip.h b/src/superio/via/vt1211/chip.h
index fc461cc635..cfe0a31905 100644
--- a/src/superio/via/vt1211/chip.h
+++ b/src/superio/via/vt1211/chip.h
@@ -1,19 +1,12 @@
#ifndef _SUPERIO_VIA_VT1211
#define _SUPERIO_VIA_VT1211
-extern struct chip_operations superio_via_vt1211_control;
+#include <uart8250.h>
+
+extern struct chip_operations superio_via_vt1211_ops;
struct superio_via_vt1211_config {
- /* PCI function enables */
- /* i.e. so that pci scan bus will find them. */
- /* I am putting in IDE as an example but obviously this needs
- * to be more complete!
- */
- /* enables of functions of devices */
- int enable_com_ports;
- int enable_fdc;
- int enable_lpt;
- int enable_hwmon;
+ struct uart8250 com1, com2;
};
#endif /* _SUPERIO_VIA_VT1211 */