remove trailing whitespace
[coreboot.git] / src / superio / ite / it8671f / chip.h
index 39ef94c7066ac15cc047e8d3949b08e4d95dc034..7fa7e26f578b20d15042be40901d2f6facd06e34 100644 (file)
@@ -1,4 +1,6 @@
 /*
+ * This file is part of the coreboot project.
+ *
  * Copyright (C) 2006 Uwe Hermann <uwe@hermann-uwe.de>
  *
  * This program is free software; you can redistribute it and/or modify
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
-#ifndef _SUPERIO_ITE_IT8671F
-#define _SUPERIO_ITE_IT8671F
-
-// TODO: Unused?
-// #ifndef SIO_COM1
-// #define SIO_COM1_BASE   0x3F8
-// #endif
-// #ifndef SIO_COM2
-// #define SIO_COM2_BASE   0x2F8
-// #endif
+#ifndef SUPERIO_ITE_IT8671F_CHIP_H
+#define SUPERIO_ITE_IT8671F_CHIP_H
 
+#include <device/device.h>
 #include <pc80/keyboard.h>
 #include <uart8250.h>
 
-extern struct chip_operations superio_ITE_it8671f_ops;
+extern struct chip_operations superio_ite_it8671f_ops;
+
+struct superio_ite_it8671f_config {
 
-struct superio_ITE_it8671f_config {
-       struct uart8250 com1, com2;
        struct pc_keyboard keyboard;
 };
 
-#endif /* _SUPERIO_ITE_IT8671F */
-
+#endif