diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-06-08 18:31:43 +0200 |
---|---|---|
committer | Nico Huber <nico.h@gmx.de> | 2018-06-09 16:39:35 +0000 |
commit | 5cb876cc1fef34e238e37facb36a77dbc45ced9a (patch) | |
tree | c16a4900067f028fdc9812e52fa82b02b1aad990 /src/mainboard/emulation/qemu-q35 | |
parent | 7a5f77142f68edd03874015300e471eb80d03c45 (diff) |
mainboard: Get rid of device_t in ramstage
Use of device_t has been abandoned in ramstage.
Change-Id: I07e00afbbd2c19cf3ea6e08f228eb39e45f1ad0c
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26983
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Diffstat (limited to 'src/mainboard/emulation/qemu-q35')
-rw-r--r-- | src/mainboard/emulation/qemu-q35/mainboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/emulation/qemu-q35/mainboard.c b/src/mainboard/emulation/qemu-q35/mainboard.c index d107c11415..9b9375179b 100644 --- a/src/mainboard/emulation/qemu-q35/mainboard.c +++ b/src/mainboard/emulation/qemu-q35/mainboard.c @@ -43,7 +43,7 @@ intel_gma_get_controller_info(void) return &gfx_controller_info; } -static void qemu_nb_init(device_t dev) +static void qemu_nb_init(struct device *dev) { /* Map memory at 0xc0000 - 0xfffff */ int i; |