Please bear with me - another rename checkin. This qualifies as trivial, no
[coreboot.git] / src / superio / ite / it8671f / superio.c
index cc9f65e32eeb13c20435dea87058556194eccc57..0e00944f46394c42879cf7ef0dd79171457b855e 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
@@ -16,6 +18,8 @@
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
+#include <device/device.h>
+#include <device/pnp.h>
 #include <uart8250.h>
 #include <pc80/keyboard.h>
 #include "chip.h"
@@ -23,7 +27,7 @@
 
 static void init(device_t dev)
 {
-       struct superio_ITE_it8671f_config *conf;
+       struct superio_ite_it8671f_config *conf;
        struct resource *res0, *res1;
 
        if (!dev->enabled) {
@@ -76,8 +80,8 @@ static void enable_dev(struct device *dev)
                sizeof(pnp_dev_info)/sizeof(pnp_dev_info[0]), pnp_dev_info);
 }
 
-struct chip_operations superio_ITE_it8671f_ops = {
-       CHIP_NAME("ITE it8671f")
+struct chip_operations superio_ite_it8671f_ops = {
+       CHIP_NAME("ITE IT8671F Super I/O")
        .enable_dev = enable_dev,
 };