diff options
author | Elyes HAOUAS <ehaouas@noos.fr> | 2018-05-25 08:29:27 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2018-06-04 02:32:42 +0000 |
commit | 4aec34005d58360c503c3b5a2f1ed05efe1afbee (patch) | |
tree | 607f2ca4834702299808c0c3fde745a88ac34003 /src/southbridge/intel/bd82x6x/pci.c | |
parent | dfe8d644598918b6d2da2d075a7ea3433d7ca586 (diff) |
sb/intel/bd82x6x: Get rid of device_t
Use of device_t has been abandoned in ramstage.
Change-Id: I05f23504148d934109814b8f3c1c2a334366496a
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/26530
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Diffstat (limited to 'src/southbridge/intel/bd82x6x/pci.c')
-rw-r--r-- | src/southbridge/intel/bd82x6x/pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/southbridge/intel/bd82x6x/pci.c b/src/southbridge/intel/bd82x6x/pci.c index 85e431e619..f86d8a01e4 100644 --- a/src/southbridge/intel/bd82x6x/pci.c +++ b/src/southbridge/intel/bd82x6x/pci.c @@ -100,7 +100,7 @@ static void ich_pci_bus_enable_resources(struct device *dev) ich_pci_dev_enable_resources(dev); } -static void set_subsystem(device_t dev, unsigned vendor, unsigned device) +static void set_subsystem(struct device *dev, unsigned vendor, unsigned device) { /* NOTE: This is not the default position! */ if (!vendor || !device) { |