superio/fintek/f71863fg: Remove variable set but not used

Change-Id: I993055d237b2bd607822485d34d5508c74a7744c
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/32990
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
Elyes HAOUAS 2019-05-24 17:54:29 +02:00 committed by Felix Held
parent 99e578e3c1
commit d3872fcad9
1 changed files with 1 additions and 3 deletions

View File

@ -23,15 +23,13 @@
static void f71863fg_init(struct device *dev)
{
struct resource *res0;
if (!dev->enabled)
return;
switch (dev->path.pnp.device) {
/* TODO: Might potentially need code for HWM or FDC etc. */
case F71863FG_KBC:
res0 = find_resource(dev, PNP_IDX_IO0);
find_resource(dev, PNP_IDX_IO0);
pc_keyboard_init(NO_AUX_DEVICE);
break;
}