diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2010-11-11 13:14:55 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2010-11-11 13:14:55 +0000 |
commit | 5330dd91741d12ae52b9c5db179c1a6c24f3e56c (patch) | |
tree | 6391dbf532d7208a40c797cc0f912d031a2b9919 /src/superio/winbond/w83627uhg/superio.c | |
parent | 1dcd26cddc477c1274bef30ad3deb7d04f2db843 (diff) |
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/winbond/w83627uhg/superio.c')
-rw-r--r-- | src/superio/winbond/w83627uhg/superio.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/superio/winbond/w83627uhg/superio.c b/src/superio/winbond/w83627uhg/superio.c index c80eb95d17..ed22b2166c 100644 --- a/src/superio/winbond/w83627uhg/superio.c +++ b/src/superio/winbond/w83627uhg/superio.c @@ -73,7 +73,7 @@ static void set_uart_clock_source(device_t dev, u8 uart_clock) static void w83627uhg_init(device_t dev) { struct superio_winbond_w83627uhg_config *conf = dev->chip_info; - struct resource *res0, *res1; + struct resource *res0; if (!dev->enabled) return; @@ -110,8 +110,6 @@ static void w83627uhg_init(device_t dev) init_uart8250(res0->base, &conf->com6); break; case W83627UHG_KBC: - res0 = find_resource(dev, PNP_IDX_IO0); - res1 = find_resource(dev, PNP_IDX_IO1); pc_keyboard_init(&conf->keyboard); break; } |