summaryrefslogtreecommitdiff
path: root/src/superio/nsc/pc97317
diff options
context:
space:
mode:
authorUwe Hermann <uwe@hermann-uwe.de>2010-11-11 13:14:55 +0000
committerUwe Hermann <uwe@hermann-uwe.de>2010-11-11 13:14:55 +0000
commit5330dd91741d12ae52b9c5db179c1a6c24f3e56c (patch)
tree6391dbf532d7208a40c797cc0f912d031a2b9919 /src/superio/nsc/pc97317
parent1dcd26cddc477c1274bef30ad3deb7d04f2db843 (diff)
downloadcoreboot-5330dd91741d12ae52b9c5db179c1a6c24f3e56c.tar.xz
Remove superfluous Super I/O res0/res1 lines.
The pc_keyboard_init() function no longer takes any base addresses since r5152 (passed in via res0/res1 variables previously), so drop them. Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de> Acked-by: Patrick Georgi <patrick@georgi-clan.de> git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6063 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/superio/nsc/pc97317')
-rw-r--r--src/superio/nsc/pc97317/superio.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/superio/nsc/pc97317/superio.c b/src/superio/nsc/pc97317/superio.c
index 96dfbef327..2dced41898 100644
--- a/src/superio/nsc/pc97317/superio.c
+++ b/src/superio/nsc/pc97317/superio.c
@@ -29,7 +29,7 @@
static void init(device_t dev)
{
struct superio_nsc_pc97317_config *conf;
- struct resource *res0, *res1;
+ struct resource *res0;
if (!dev->enabled) {
return;
@@ -53,8 +53,6 @@ static void init(device_t dev)
pnp_write_config(dev, 0xf0, 0x40); /* Set KBC clock to 8 Mhz */
pnp_set_enable(dev, 1); /* Enable keyboard */
- res0 = find_resource(dev, PNP_IDX_IO0);
- res1 = find_resource(dev, PNP_IDX_IO1);
pc_keyboard_init(&conf->keyboard);
break;