diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-25 13:11:37 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-28 16:07:35 +0000 |
commit | 696545db7bf3dd2682a1d636db5411fe0e7c0c54 (patch) | |
tree | 95f995d80b074320e903dbe19497ac9c50c16633 /src/soc/intel/quark/ehci.c | |
parent | d6cd2553210d303eb8593400dfc87f7f71d7d995 (diff) | |
download | coreboot-696545db7bf3dd2682a1d636db5411fe0e7c0c54.tar.xz |
soc/intel/quark: Get rid of device_t
Use of device_t has been abandoned in ramstage.
Change-Id: I102c9b9b1066064589149388d5ebbcd6d0d81fa7
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26542
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/soc/intel/quark/ehci.c')
-rw-r--r-- | src/soc/intel/quark/ehci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/soc/intel/quark/ehci.c b/src/soc/intel/quark/ehci.c index 2524fa7f83..12306293a7 100644 --- a/src/soc/intel/quark/ehci.c +++ b/src/soc/intel/quark/ehci.c @@ -107,7 +107,7 @@ static const struct reg_script usb_device_port_init_script[] = { REG_SCRIPT_END }; -static void init(device_t dev) +static void init(struct device *dev) { if ((dev->path.pci.devfn & 7) == EHCI_FUNC) { printk(BIOS_INFO, "Initializing USB PLLs\n"); |