Remove superfluous Super I/O res0/res1 lines.
[coreboot.git] / src / superio / nsc / pc87309 / superio.c
index 92a54556f7777e3b940628aa147e78025d52d37e..04f75fbaa9abc3d3e79999b11e51cfefe557cc18 100644 (file)
 #include <device/pnp.h>
 #include <uart8250.h>
 #include <pc80/keyboard.h>
+#include <stdlib.h>
 #include "chip.h"
 #include "pc87309.h"
 
 static void init(device_t dev)
 {
        struct superio_nsc_pc87309_config *conf;
-       struct resource *res0, *res1;
+       struct resource *res0;
 
        if (!dev->enabled) {
                return;
        }
        conf = dev->chip_info;
-       switch (dev->path.u.pnp.device) {
+       switch (dev->path.pnp.device) {
        case PC87309_SP1:
                res0 = find_resource(dev, PNP_IDX_IO0);
                init_uart8250(res0->base, &conf->com1);
@@ -45,9 +46,7 @@ static void init(device_t dev)
                init_uart8250(res0->base, &conf->com2);
                break;
        case PC87309_KBCK:
-               res0 = find_resource(dev, PNP_IDX_IO0);
-               res1 = find_resource(dev, PNP_IDX_IO1);
-               init_pc_keyboard(res0->base, res1->base, &conf->keyboard);
+               pc_keyboard_init(&conf->keyboard);
                break;
        }
 }
@@ -65,7 +64,7 @@ static struct pnp_info pnp_dev_info[] = {
        {&ops, PC87309_PP,   PNP_IO0 | PNP_IRQ0 | PNP_DRQ0, {0x04f8, 0},},
        {&ops, PC87309_SP2,  PNP_IO0 | PNP_IRQ0 | PNP_DRQ0 | PNP_DRQ1, {0x7f8, 0},},
        {&ops, PC87309_SP1,  PNP_IO0 | PNP_IRQ0, {0x7f8, 0},},
-       // TODO: PM.
+       /* TODO: PM. */
        {&ops, PC87309_KBCM, PNP_IRQ0},
        {&ops, PC87309_KBCK, PNP_IO0 | PNP_IO1 | PNP_IRQ0, {0x7f8, 0}, {0x7f8, 0x4},},
 };
@@ -73,7 +72,7 @@ static struct pnp_info pnp_dev_info[] = {
 static void enable_dev(struct device *dev)
 {
        pnp_enable_devices(dev, &pnp_ops,
-               sizeof(pnp_dev_info) / sizeof(pnp_dev_info[0]), pnp_dev_info);
+               ARRAY_SIZE(pnp_dev_info), pnp_dev_info);
 }
 
 struct chip_operations superio_nsc_pc87309_ops = {