diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-04 20:00:08 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-09 13:14:37 +0000 |
commit | 02b05d1f6be34c5833c8fbeb6483a2634b758eea (patch) | |
tree | d05b7624e36648a5af69d07087ff8fac6adff699 /src/mainboard/asus/k8v-x | |
parent | 5a0757cf74f01b719508df600b03faf444fd1283 (diff) |
mb/asus: Get rid of device_t
Use of device_t has been abandoned in ramstage.
Change-Id: I8fe817bb514c69a647c2208a0573a2c5fe98722d
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26076
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/asus/k8v-x')
-rw-r--r-- | src/mainboard/asus/k8v-x/mainboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/asus/k8v-x/mainboard.c b/src/mainboard/asus/k8v-x/mainboard.c index ab5b2c40bf..9f35cd389b 100644 --- a/src/mainboard/asus/k8v-x/mainboard.c +++ b/src/mainboard/asus/k8v-x/mainboard.c @@ -23,7 +23,7 @@ u32 vt8237_ide_80pin_detect(struct device *dev) { - device_t lpc_dev; + struct device *lpc_dev; u16 acpi_io_base; u32 gpio_in; u32 res; |