diff options
Diffstat (limited to 'drivers/pci/hotplug/pnv_php.c')
| -rw-r--r-- | drivers/pci/hotplug/pnv_php.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/drivers/pci/hotplug/pnv_php.c b/drivers/pci/hotplug/pnv_php.c index 694349be9d0a..573a41869c15 100644 --- a/drivers/pci/hotplug/pnv_php.c +++ b/drivers/pci/hotplug/pnv_php.c @@ -40,7 +40,6 @@ static void pnv_php_disable_irq(struct pnv_php_slot *php_slot,  				bool disable_device)  {  	struct pci_dev *pdev = php_slot->pdev; -	int irq = php_slot->irq;  	u16 ctrl;  	if (php_slot->irq > 0) { @@ -59,7 +58,7 @@ static void pnv_php_disable_irq(struct pnv_php_slot *php_slot,  		php_slot->wq = NULL;  	} -	if (disable_device || irq > 0) { +	if (disable_device) {  		if (pdev->msix_enabled)  			pci_disable_msix(pdev);  		else if (pdev->msi_enabled) |