Drop baud rate init to an arbitrary baud rate from Super I/O code.
[coreboot.git] / src / superio / ite / it8673f / chip.h
index 8a4ada5b129deaed063ab5940ae29685ef11fd6c..431098e4337b1a756b6699aa9b147f4513f34cbe 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_IT8673F
-#define _SUPERIO_ITE_IT8673F
+#ifndef SUPERIO_ITE_IT8673F_CHIP_H
+#define SUPERIO_ITE_IT8673F_CHIP_H
 
+#include <device/device.h>
 #include <pc80/keyboard.h>
 #include <uart8250.h>
 
-extern struct chip_operations superio_ITE_it8673f_ops;
+extern struct chip_operations superio_ite_it8673f_ops;
 
-struct superio_ITE_it8673f_config {
-       struct uart8250 com1, com2;
+struct superio_ite_it8673f_config {
+       
        struct pc_keyboard keyboard;
 };
 
-#endif /* _SUPERIO_ITE_IT8673F */
-
+#endif