diff options
Diffstat (limited to 'src/superio/fintek/f71859')
-rwxr-xr-x | src/superio/fintek/f71859/chip.h | 2 | ||||
-rwxr-xr-x | src/superio/fintek/f71859/superio.c | 9 |
2 files changed, 1 insertions, 10 deletions
diff --git a/src/superio/fintek/f71859/chip.h b/src/superio/fintek/f71859/chip.h index a0de2d5982..84008623e1 100755 --- a/src/superio/fintek/f71859/chip.h +++ b/src/superio/fintek/f71859/chip.h @@ -27,7 +27,7 @@ extern struct chip_operations superio_fintek_f71859_ops; struct superio_fintek_f71859_config { - struct uart8250 com1, com2; + }; #endif diff --git a/src/superio/fintek/f71859/superio.c b/src/superio/fintek/f71859/superio.c index 6c74d81516..809140b5a1 100755 --- a/src/superio/fintek/f71859/superio.c +++ b/src/superio/fintek/f71859/superio.c @@ -41,19 +41,10 @@ static void pnp_exit_conf_state(device_t dev) static void f71859_init(device_t dev) { - struct superio_fintek_f71859_config *conf = dev->chip_info; - struct resource *res0; - if (!dev->enabled) return; - switch(dev->path.pnp.device) { /* TODO: Might potentially need code for HWM or FDC etc. */ - case F71859_SP1: - res0 = find_resource(dev, PNP_IDX_IO0); - init_uart8250(res0->base, &conf->com1); - break; - } } static void f71859_pnp_set_resources(device_t dev) |