diff options
author | Antonello Dettori <dev@dettori.io> | 2016-11-08 18:44:46 +0100 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-11-10 17:00:59 +0100 |
commit | 1232666b6f1ff9be8dd2ef458aba7c202d8ba069 (patch) | |
tree | d8593fa570cf95aa416f875aeeaace9a9a17e355 /src/mainboard | |
parent | c8a5aa5c3a63015d3afd03461554b80f3cf6b30d (diff) | |
download | coreboot-1232666b6f1ff9be8dd2ef458aba7c202d8ba069.tar.xz |
mainboard/thomson/ip1000: transition away from device_t
Replace the use of the old device_t definition inside
mainboard/thomson/ip1000.
Change-Id: Id7b979d2539d4a80609a60464527939c4d449822
Signed-off-by: Antonello Dettori <dev@dettori.io>
Reviewed-on: https://review.coreboot.org/17308
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
Diffstat (limited to 'src/mainboard')
-rw-r--r-- | src/mainboard/thomson/ip1000/gpio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/thomson/ip1000/gpio.c b/src/mainboard/thomson/ip1000/gpio.c index 29c222d2de..b4bf30e1ed 100644 --- a/src/mainboard/thomson/ip1000/gpio.c +++ b/src/mainboard/thomson/ip1000/gpio.c @@ -23,7 +23,7 @@ /* Early mainboard specific GPIO setup. */ static void mb_gpio_init(void) { - device_t dev; + pci_devfn_t dev; uint16_t port; uint32_t set_gpio; |