aboutsummaryrefslogtreecommitdiff
path: root/src/superio/fintek/f71889
diff options
context:
space:
mode:
Diffstat (limited to 'src/superio/fintek/f71889')
-rw-r--r--src/superio/fintek/f71889/chip.h2
-rw-r--r--src/superio/fintek/f71889/superio.c9
2 files changed, 1 insertions, 10 deletions
diff --git a/src/superio/fintek/f71889/chip.h b/src/superio/fintek/f71889/chip.h
index b4357b2018..c7752164cb 100644
--- a/src/superio/fintek/f71889/chip.h
+++ b/src/superio/fintek/f71889/chip.h
@@ -28,7 +28,7 @@
extern struct chip_operations superio_fintek_f71889_ops;
struct superio_fintek_f71889_config {
- struct uart8250 com1, com2;
+
struct pc_keyboard keyboard;
};
diff --git a/src/superio/fintek/f71889/superio.c b/src/superio/fintek/f71889/superio.c
index 5f4ca3fc23..bed421aa24 100644
--- a/src/superio/fintek/f71889/superio.c
+++ b/src/superio/fintek/f71889/superio.c
@@ -41,21 +41,12 @@ static void pnp_exit_conf_state(device_t dev)
static void f71889_init(device_t dev)
{
struct superio_fintek_f71889_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 F71889_SP1:
- res0 = find_resource(dev, PNP_IDX_IO0);
- init_uart8250(res0->base, &conf->com1);
- break;
- case F71889_SP2:
- res0 = find_resource(dev, PNP_IDX_IO0);
- init_uart8250(res0->base, &conf->com2);
- break;
case F71889_KBC:
pc_keyboard_init(&conf->keyboard);
break;