diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-04 20:16:53 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-09 10:09:35 +0000 |
commit | c390e7e60547778e6c0a193db366b407b77c3696 (patch) | |
tree | cced27d045f31414ec217959b814808d53dc3c81 /src/mainboard/esd | |
parent | 78ccdbf15b331d394e842583c32bb0cec935053d (diff) |
mb/esd: Get rid of device_t
Use of device_t has been abandoned in ramstage.
Change-Id: I5928e871b8e9ba5964c02fbabb7a9d8dc9ecc0a8
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26082
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/mainboard/esd')
-rw-r--r-- | src/mainboard/esd/atom15/mainboard.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mainboard/esd/atom15/mainboard.c b/src/mainboard/esd/atom15/mainboard.c index 70f96fc45e..0fe1259420 100644 --- a/src/mainboard/esd/atom15/mainboard.c +++ b/src/mainboard/esd/atom15/mainboard.c @@ -21,7 +21,7 @@ * mainboard_enable is executed as first thing after enumerate_buses(). * This is the earliest point to add customization. */ -static void mainboard_enable(device_t dev) +static void mainboard_enable(struct device *dev) { } |