mainboard/kontron/986lcd-m: transition away from device_t

Replace the use of the old device_t definition inside
mainboard/kontron/986lcd-m.

Change-Id: Ib47a4bb3580cb72ee51fb06c6faa6d2d1bd3a80c
Signed-off-by: Antonello Dettori <dev@dettori.io>
Reviewed-on: https://review.coreboot.org/17298
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Antonello Dettori 2016-11-08 18:44:46 +01:00 committed by Martin Roth
parent cc026798ce
commit 9ec1123917
1 changed files with 3 additions and 3 deletions

View File

@ -76,14 +76,14 @@ static void ich7_enable_lpc(void)
}
/* TODO: superio code should really not be in mainboard */
static void pnp_enter_func_mode(device_t dev)
static void pnp_enter_func_mode(pnp_devfn_t dev)
{
u16 port = dev >> 8;
outb(0x87, port);
outb(0x87, port);
}
static void pnp_exit_func_mode(device_t dev)
static void pnp_exit_func_mode(pnp_devfn_t dev)
{
u16 port = dev >> 8;
outb(0xaa, port);
@ -96,7 +96,7 @@ static void pnp_exit_func_mode(device_t dev)
*/
static void early_superio_config_w83627thg(void)
{
device_t dev;
pnp_devfn_t dev;
dev = PNP_DEV(0x2e, W83627THG_SP1);
pnp_enter_func_mode(dev);