diff options
Diffstat (limited to 'drivers/pci/hotplug/shpchp_hpc.c')
| -rw-r--r-- | drivers/pci/hotplug/shpchp_hpc.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pci/hotplug/shpchp_hpc.c b/drivers/pci/hotplug/shpchp_hpc.c index 36547f0ce30..75ba2311b54 100644 --- a/drivers/pci/hotplug/shpchp_hpc.c +++ b/drivers/pci/hotplug/shpchp_hpc.c @@ -944,8 +944,8 @@ int shpc_init(struct controller *ctrl, struct pci_dev *pdev)  	ctrl->pci_dev = pdev;  /* pci_dev of the P2P bridge */  	ctrl_dbg(ctrl, "Hotplug Controller:\n"); -	if ((pdev->vendor == PCI_VENDOR_ID_AMD) || (pdev->device == -				PCI_DEVICE_ID_AMD_GOLAM_7450)) { +	if (pdev->vendor == PCI_VENDOR_ID_AMD && +	    pdev->device == PCI_DEVICE_ID_AMD_GOLAM_7450) {  		/* amd shpc driver doesn't use Base Offset; assume 0 */  		ctrl->mmio_base = pci_resource_start(pdev, 0);  		ctrl->mmio_size = pci_resource_len(pdev, 0);  |