diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-02 22:02:45 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-04 10:20:24 +0000 |
commit | a26c15379170524adda97b9171407fad06390e4d (patch) | |
tree | b60c48285d40af6c934f55c93db34a57c2442dc4 /src/drivers/uart/oxpcie.c | |
parent | 372917dc4a5db738537e9e91054102a4c9b303a7 (diff) | |
download | coreboot-a26c15379170524adda97b9171407fad06390e4d.tar.gz coreboot-a26c15379170524adda97b9171407fad06390e4d.tar.bz2 coreboot-a26c15379170524adda97b9171407fad06390e4d.zip |
drivers/uart/oxpcie.c: Get rid of device_t
Use of `device_t` has been abandoned in ramstage.
Change-Id: If2b9cbf130f963bc1bedef16b7951e9546054743
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26012
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/drivers/uart/oxpcie.c')
-rw-r--r-- | src/drivers/uart/oxpcie.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/uart/oxpcie.c b/src/drivers/uart/oxpcie.c index 2a48067237ba..7364a7541171 100644 --- a/src/drivers/uart/oxpcie.c +++ b/src/drivers/uart/oxpcie.c @@ -21,7 +21,7 @@ #include <console/uart.h> #include <arch/io.h> -static void oxford_oxpcie_enable(device_t dev) +static void oxford_oxpcie_enable(struct device *dev) { printk(BIOS_DEBUG, "Initializing Oxford OXPCIe952\n"); |