remove trailing whitespace
[coreboot.git] / src / superio / via / vt1211 / chip.h
index 76a5a5babdff3bba9ee4f82817fcca4c76e479b8..3fcd6ae1b19f56f3c8896ff5f754908b45642d56 100644 (file)
@@ -1,19 +1,32 @@
-#ifndef _SUPERIO_VIA_VT1211
-#define _SUPERIO_VIA_VT1211
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2004 Nick Barker <nick.barker9@btinternet.com>
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
 
-extern struct chip_control superio_via_vt1211_control;
+#ifndef SUPERIO_VIA_VT1211_CHIP_H
+#define SUPERIO_VIA_VT1211_CHIP_H
+
+#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;
+
 };
 
-#endif /* _SUPERIO_VIA_VT1211 */
+#endif