southbridge/broadcom/bcm5785: transition away from device_t
Replace the use of the old device_t definition inside southbridge/broadcom/bcm5785. Change-Id: I091b07439ff918efa52cf8f8270484131fd0cec5 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>
This commit is contained in:
parent
ca159f0fb3
commit
6b63990602
|
@ -20,7 +20,7 @@
|
||||||
static void bcm5785_enable_lpc(void)
|
static void bcm5785_enable_lpc(void)
|
||||||
{
|
{
|
||||||
uint8_t byte;
|
uint8_t byte;
|
||||||
device_t dev;
|
pci_devfn_t dev;
|
||||||
|
|
||||||
dev = pci_locate_device(PCI_ID(0x1166, 0x0234), 0);
|
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)
|
static void bcm5785_enable_wdt_port_cf9(void)
|
||||||
{
|
{
|
||||||
device_t dev;
|
pci_devfn_t dev;
|
||||||
uint32_t dword;
|
uint32_t dword;
|
||||||
uint32_t dword_old;
|
uint32_t dword_old;
|
||||||
|
|
||||||
|
@ -65,7 +65,7 @@ static void bcm5785_enable_wdt_port_cf9(void)
|
||||||
|
|
||||||
unsigned get_sbdn(unsigned bus)
|
unsigned get_sbdn(unsigned bus)
|
||||||
{
|
{
|
||||||
device_t dev;
|
pci_devfn_t dev;
|
||||||
|
|
||||||
/* Find the device.
|
/* Find the device.
|
||||||
* There can only be one bcm5785 on a hypertransport chain/bus.
|
* 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)
|
static void bcm5785_enable_msg(void)
|
||||||
{
|
{
|
||||||
device_t dev;
|
pci_devfn_t dev;
|
||||||
uint32_t dword;
|
uint32_t dword;
|
||||||
uint32_t dword_old;
|
uint32_t dword_old;
|
||||||
uint8_t byte;
|
uint8_t byte;
|
||||||
|
@ -158,7 +158,7 @@ static void bcm5785_early_setup(void)
|
||||||
{
|
{
|
||||||
uint8_t byte;
|
uint8_t byte;
|
||||||
uint32_t dword;
|
uint32_t dword;
|
||||||
device_t dev;
|
pci_devfn_t dev;
|
||||||
|
|
||||||
//F0
|
//F0
|
||||||
// enable device on bcm5785 at first
|
// enable device on bcm5785 at first
|
||||||
|
|
|
@ -20,7 +20,7 @@
|
||||||
|
|
||||||
static void enable_smbus(void)
|
static void enable_smbus(void)
|
||||||
{
|
{
|
||||||
device_t dev;
|
pci_devfn_t dev;
|
||||||
dev = pci_locate_device(PCI_ID(0x1166, 0x0205), 0); // 0x0201?
|
dev = pci_locate_device(PCI_ID(0x1166, 0x0205), 0); // 0x0201?
|
||||||
|
|
||||||
if (dev == PCI_DEV_INVALID) {
|
if (dev == PCI_DEV_INVALID) {
|
||||||
|
|
Loading…
Reference in New Issue