aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/asus/m2n-e
diff options
context:
space:
mode:
authorAntonello Dettori <dev@dettori.io>2016-09-03 10:47:40 +0200
committerMartin Roth <martinroth@google.com>2016-09-13 17:16:24 +0200
commit837618bf20b93ffa4fb23db1dde510b221ce90df (patch)
tree00e81eb87a4bb635f70f8b9e62421bf6bcca26a6 /src/mainboard/asus/m2n-e
parente889b19ba08830882da18614494b811c3698520e (diff)
mainboard/asus/*: transition away from device_t
Replace the use of the old device_t definition inside mainboard/asus/*. Change-Id: I5ddfba2102854adcc9bbfd75f7acbe76f0152b72 Signed-off-by: Antonello Dettori <dev@dettori.io> Reviewed-on: https://review.coreboot.org/16438 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard/asus/m2n-e')
-rw-r--r--src/mainboard/asus/m2n-e/romstage.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/asus/m2n-e/romstage.c b/src/mainboard/asus/m2n-e/romstage.c
index f9e5d46055..3bf54db3fa 100644
--- a/src/mainboard/asus/m2n-e/romstage.c
+++ b/src/mainboard/asus/m2n-e/romstage.c
@@ -76,7 +76,7 @@ static void sio_setup(void)
{
u8 byte;
u32 dword;
- device_t dev = PCI_DEV(0, MCP55_DEVN_BASE + 1, 0); /* LPC */
+ pci_devfn_t dev = PCI_DEV(0, MCP55_DEVN_BASE + 1, 0); /* LPC */
/* Subject decoding */
byte = pci_read_config8(dev, 0x7b);