diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-04 19:42:25 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-09 13:12:46 +0000 |
commit | 4b2c71f657e60255355cb30bba41fc3376c887ba (patch) | |
tree | ab0ed39d56fc1d50bc678ce6629b9c1d61d2f4c1 /src/mainboard/amd/lamar | |
parent | 1943f3798d7e05c704431cf6602cf8bb86e40898 (diff) |
mb/amd: Get rid of device_t
Use of device_t has been abandoned in ramstage.
Change-Id: I01270248bddf07df4c959f0c632e722728d0cd03
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26072
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/amd/lamar')
-rw-r--r-- | src/mainboard/amd/lamar/mainboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/amd/lamar/mainboard.c b/src/mainboard/amd/lamar/mainboard.c index 050dd14bd3..94e680b30f 100644 --- a/src/mainboard/amd/lamar/mainboard.c +++ b/src/mainboard/amd/lamar/mainboard.c @@ -141,7 +141,7 @@ static void pirq_setup(void) /************************************************* * enable the dedicated function in lamar board. *************************************************/ -static void mainboard_enable(device_t dev) +static void mainboard_enable(struct device *dev) { printk(BIOS_INFO, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER " Enable.\n"); |