Commit a758133e authored by Hanna V. Linder's avatar Hanna V. Linder Committed by Greg Kroah-Hartman

[PATCH] ibmphp_core.c: replace pci_get_device with pci_dev_present

This can be converted to pci_dev_present as the dev returned is never used.
Compile tested.
Signed-off-by: default avatarHanna Linder <hannal@us.ibm.com>
Signed-off-by: default avatarGreg Kroah-Hartman <greg@kroah.com>
parent 82760a89
...@@ -838,8 +838,11 @@ static int set_bus (struct slot * slot_cur) ...@@ -838,8 +838,11 @@ static int set_bus (struct slot * slot_cur)
int rc; int rc;
u8 speed; u8 speed;
u8 cmd = 0x0; u8 cmd = 0x0;
struct pci_dev *dev = NULL;
int retval; int retval;
static struct pci_device_id ciobx[] = {
{ PCI_DEVICE(PCI_VENDOR_ID_SERVERWORKS, 0x0101) },
{ },
};
debug ("%s - entry slot # %d\n", __FUNCTION__, slot_cur->number); debug ("%s - entry slot # %d\n", __FUNCTION__, slot_cur->number);
if (SET_BUS_STATUS (slot_cur->ctrl) && is_bus_empty (slot_cur)) { if (SET_BUS_STATUS (slot_cur->ctrl) && is_bus_empty (slot_cur)) {
...@@ -886,8 +889,7 @@ static int set_bus (struct slot * slot_cur) ...@@ -886,8 +889,7 @@ static int set_bus (struct slot * slot_cur)
break; break;
case BUS_SPEED_133: case BUS_SPEED_133:
/* This is to take care of the bug in CIOBX chip */ /* This is to take care of the bug in CIOBX chip */
while ((dev = pci_get_device(PCI_VENDOR_ID_SERVERWORKS, if (pci_dev_present(ciobx))
0x0101, dev)) != NULL)
ibmphp_hpc_writeslot (slot_cur, HPC_BUS_100PCIXMODE); ibmphp_hpc_writeslot (slot_cur, HPC_BUS_100PCIXMODE);
cmd = HPC_BUS_133PCIXMODE; cmd = HPC_BUS_133PCIXMODE;
break; break;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment