diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-19 12:07:10 +0200 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2018-05-22 07:16:55 +0000 |
commit | 86c92ba0422a7075af2f0f1e6da791fc0c6f7aad (patch) | |
tree | e40f0f52127e14c482de8a04ef7332a0c0341612 /src | |
parent | 04864c7fd0fddf1ce3dca9ba77435f9f49985029 (diff) | |
download | coreboot-86c92ba0422a7075af2f0f1e6da791fc0c6f7aad.tar.xz |
sb/broadcom/bcm5780: Get rid of device_t
Use of device_t has been abandoned in ramstage.
Change-Id: Ia46b909c78086d9417cabc1cd65e16d264a8df8e
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26402
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/southbridge/broadcom/bcm5780/nic.c | 3 | ||||
-rw-r--r-- | src/southbridge/broadcom/bcm5780/pcix.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/southbridge/broadcom/bcm5780/nic.c b/src/southbridge/broadcom/bcm5780/nic.c index d0ff9ca162..8f59757be5 100644 --- a/src/southbridge/broadcom/bcm5780/nic.c +++ b/src/southbridge/broadcom/bcm5780/nic.c @@ -21,7 +21,8 @@ #include <device/pci_ops.h> -static void lpci_set_subsystem(device_t dev, unsigned vendor, unsigned device) +static void lpci_set_subsystem(struct device *dev, unsigned vendor, + unsigned device) { pci_write_config32(dev, 0x40, ((device & 0xffff) << 16) | (vendor & 0xffff)); diff --git a/src/southbridge/broadcom/bcm5780/pcix.c b/src/southbridge/broadcom/bcm5780/pcix.c index 8aa37a6757..7936b85884 100644 --- a/src/southbridge/broadcom/bcm5780/pcix.c +++ b/src/southbridge/broadcom/bcm5780/pcix.c @@ -20,7 +20,8 @@ #include <device/pci_ids.h> #include <device/pci_ops.h> -static void lpci_set_subsystem(device_t dev, unsigned vendor, unsigned device) +static void lpci_set_subsystem(struct device *dev, unsigned vendor, + unsigned device) { pci_write_config32(dev, 0x40, ((device & 0xffff) << 16) | (vendor & 0xffff)); |