UPSTREAM: southbridge/broadcom/bcm5785: transition away from device_t

Replace the use of the old device_t definition inside
southbridge/broadcom/bcm5785.

BUG=None
BRANCH=None
TEST=None

Signed-off-by: Antonello Dettori <dev@dettori.io>
Reviewed-on: https://review.coreboot.org/16690
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>

Change-Id: I091b07439ff918efa52cf8f8270484131fd0cec5
Reviewed-on: https://chromium-review.googlesource.com/391930
Commit-Ready: Furquan Shaikh <furquan@chromium.org>
Tested-by: Furquan Shaikh <furquan@chromium.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
Antonello Dettori 2016-09-03 10:45:33 +02:00 committed by chrome-bot
commit 89083ab7d6
2 changed files with 6 additions and 6 deletions

View file

@ -20,7 +20,7 @@
static void bcm5785_enable_lpc(void)
{
uint8_t byte;
device_t dev;
pci_devfn_t dev;
dev = pci_locate_device(PCI_ID(0x1166, 0x0234), 0);
@ -39,7 +39,7 @@ static void bcm5785_enable_lpc(void)
static void bcm5785_enable_wdt_port_cf9(void)
{
device_t dev;
pci_devfn_t dev;
uint32_t dword;
uint32_t dword_old;
@ -65,7 +65,7 @@ static void bcm5785_enable_wdt_port_cf9(void)
unsigned get_sbdn(unsigned bus)
{
device_t dev;
pci_devfn_t dev;
/* Find the device.
* There can only be one bcm5785 on a hypertransport chain/bus.
@ -130,7 +130,7 @@ void soft_reset(void)
static void bcm5785_enable_msg(void)
{
device_t dev;
pci_devfn_t dev;
uint32_t dword;
uint32_t dword_old;
uint8_t byte;
@ -158,7 +158,7 @@ static void bcm5785_early_setup(void)
{
uint8_t byte;
uint32_t dword;
device_t dev;
pci_devfn_t dev;
//F0
// enable device on bcm5785 at first

View file

@ -20,7 +20,7 @@
static void enable_smbus(void)
{
device_t dev;
pci_devfn_t dev;
dev = pci_locate_device(PCI_ID(0x1166, 0x0205), 0); // 0x0201?
if (dev == PCI_DEV_INVALID) {