- O2, enums, and switch statements work in romcc
[coreboot.git] / src / southbridge / via / vt8231 / chip.h
index 5c2d67a78f32785198b7a5c9e00f3a685d48a0d5..fe3d33267585b3b1968ff6abbb3a5beeeb7db9ab 100644 (file)
@@ -4,11 +4,18 @@
 extern struct chip_control southbridge_via_vt8231_control;
 
 struct southbridge_via_vt8231_config {
-  int enable_usb;
-  int enable_native_ide;
-  int enable_com_ports;
-  int enable_keyboard;
-  int enable_nvram;
+       /* 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!
+        */
+       int enable_ide;
+       /* enables of functions of devices */
+       int enable_usb;
+       int enable_native_ide;
+       int enable_com_ports;
+       int enable_keyboard;
+       int enable_nvram;
 };
 
 #endif /* _SOUTHBRIDGE_VIA_VT8231 */