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
This commit is contained in:
@ -29,7 +29,7 @@
|
||||
static void init(device_t dev)
|
||||
{
|
||||
struct superio_ite_it8718f_config *conf = dev->chip_info;
|
||||
struct resource *res0, *res1;
|
||||
struct resource *res0;
|
||||
|
||||
if (!dev->enabled)
|
||||
return;
|
||||
@ -50,8 +50,6 @@ static void init(device_t dev)
|
||||
case IT8718F_EC: /* TODO. */
|
||||
break;
|
||||
case IT8718F_KBCK:
|
||||
res0 = find_resource(dev, PNP_IDX_IO0);
|
||||
res1 = find_resource(dev, PNP_IDX_IO1);
|
||||
pc_keyboard_init(&conf->keyboard);
|
||||
break;
|
||||
case IT8718F_KBCM: /* TODO. */
|
||||
|
Reference in New Issue
Block a user