mainboard/kontron/ktqm77: transition away from device_t
Replace the use of the old device_t definition inside mainboard/kontron/ktqm77. Change-Id: I47763d1e2bfeee6366ce24b20d874adf7c6f65be Signed-off-by: Antonello Dettori <dev@dettori.io> Reviewed-on: https://review.coreboot.org/17299 Tested-by: build bot (Jenkins) Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
06eee265c2
commit
82fcc1afa1
|
@ -63,14 +63,14 @@ void rcba_config(void)
|
|||
RCBA32(FD) = reg32;
|
||||
}
|
||||
|
||||
static void pnp_enter_ext_func_mode(device_t dev)
|
||||
static void pnp_enter_ext_func_mode(pnp_devfn_t dev)
|
||||
{
|
||||
u16 port = dev >> 8;
|
||||
outb(0x87, port);
|
||||
outb(0x87, port);
|
||||
}
|
||||
|
||||
static void pnp_exit_ext_func_mode(device_t dev)
|
||||
static void pnp_exit_ext_func_mode(pnp_devfn_t dev)
|
||||
{
|
||||
u16 port = dev >> 8;
|
||||
outb(0xaa, port);
|
||||
|
@ -80,7 +80,7 @@ void mainboard_config_superio(void)
|
|||
{
|
||||
int lvds_3v = 0; /* 0 (5V) or 1 (3V3) */
|
||||
int dis_bl_inv = 1; /* backlight inversion: 1 = disabled, 0 = enabled */
|
||||
device_t dev = PNP_DEV(0x2e, 0x9);
|
||||
pnp_devfn_t dev = PNP_DEV(0x2e, 0x9);
|
||||
pnp_enter_ext_func_mode(dev);
|
||||
pnp_write_config(dev, 0x29, 0x02); /* Pins 119, 120 are GPIO21, 20 */
|
||||
pnp_write_config(dev, 0x30, 0x03); /* Enable GPIO2+3 */
|
||||
|
|
Loading…
Reference in New Issue