diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-04 18:32:11 +0200 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2018-05-08 02:57:04 +0000 |
commit | 6572bddeff234ffba82ef90061a9f965da3435c3 (patch) | |
tree | 18330411b3c68a45199ccc3001d1f764d1c38891 /src/ec | |
parent | 9dd89cd9586d0fa0b82a4a52da3232e35cfb5adb (diff) | |
download | coreboot-6572bddeff234ffba82ef90061a9f965da3435c3.tar.xz |
ec/lenovo/h8: Get rid of device_t
Use of device_t has been abandoned in ramstage.
Change-Id: I3db9487c46b29510e59ec5c019d022f5cbaff354
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26068
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/ec')
-rw-r--r-- | src/ec/lenovo/h8/h8.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ec/lenovo/h8/h8.c b/src/ec/lenovo/h8/h8.c index b034dba99a..58bc3dbb49 100644 --- a/src/ec/lenovo/h8/h8.c +++ b/src/ec/lenovo/h8/h8.c @@ -176,7 +176,7 @@ static void h8_smbios_strings(struct device *dev, struct smbios_type11 *t) } #endif -static void h8_init(device_t dev) +static void h8_init(struct device *dev) { pc_keyboard_init(NO_AUX_DEVICE); } |