From 5330dd91741d12ae52b9c5db179c1a6c24f3e56c Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Thu, 11 Nov 2010 13:14:55 +0000 Subject: 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 Acked-by: Patrick Georgi git-svn-id: svn://svn.coreboot.org/coreboot/trunk@6063 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/superio/ite/it8712f/superio.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'src/superio/ite/it8712f/superio.c') diff --git a/src/superio/ite/it8712f/superio.c b/src/superio/ite/it8712f/superio.c index 4d41ac3412..d551a5be8c 100644 --- a/src/superio/ite/it8712f/superio.c +++ b/src/superio/ite/it8712f/superio.c @@ -46,7 +46,7 @@ static void pnp_exit_ext_func_mode(device_t dev) static void it8712f_init(device_t dev) { struct superio_ite_it8712f_config *conf = dev->chip_info; - struct resource *res0, *res1; + struct resource *res0; if (!dev->enabled) return; @@ -67,8 +67,6 @@ static void it8712f_init(device_t dev) case IT8712F_EC: /* TODO. */ break; case IT8712F_KBCK: - res0 = find_resource(dev, PNP_IDX_IO0); - res1 = find_resource(dev, PNP_IDX_IO1); set_kbc_ps2_mode(); pc_keyboard_init(&conf->keyboard); break; -- cgit v1.2.3