Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 16454445 authored by Jeff Garzik's avatar Jeff Garzik
Browse files

[libata] sata_vsc: build fix after PCI MSI feature addition



Signed-off-by: default avatarJeff Garzik <jeff@garzik.org>
parent 7cbaa86b
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -124,17 +124,17 @@ static void vsc_sata_scr_write (struct ata_port *ap, unsigned int sc_reg,
}


static void vsc_sata_host_stop(struct ata_host_set *host_set)
static void vsc_sata_host_stop(struct ata_host *host)
{
	struct vsc_sata_host_priv *hpriv = host_set->private_data;
	struct pci_dev *pdev = to_pci_dev(host_set->dev);
	struct vsc_sata_host_priv *hpriv = host->private_data;
	struct pci_dev *pdev = to_pci_dev(host->dev);

	if (hpriv->hp_flags & VSC_SATA_HP_FLAG_MSI)
		pci_disable_msi(pdev);
	else
		pci_intx(pdev, 0);
	kfree (hpriv);
	ata_pci_host_stop(host_set);
	ata_pci_host_stop(host);
}