misc: alcor_pci: set NULL intfdata and clear pci master
authorShuah Khan <skhan@linuxfoundation.org>
Tue, 17 May 2022 20:36:30 +0000 (14:36 -0600)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 19 May 2022 16:57:17 +0000 (18:57 +0200)
alcor_pci doesn't set driver data to NULL and clear pci master when
probe fails. Doesn't clear pci master from remove interface. Clearing
pci master is necessary to disable bus mastering and prevent DMAs after
driver removal.

Fix alcor_pci_probe() to set driver data to NULL and clear pci master
from its error path. Fix alcor_pci_remove() to clear pci master.

Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Link: https://lore.kernel.org/r/20220517203630.45232-1-skhan@linuxfoundation.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/cardreader/alcor_pci.c

index 3f514d7..9080f9f 100644 (file)
@@ -317,12 +317,15 @@ static int alcor_pci_probe(struct pci_dev *pdev,
        ret = mfd_add_devices(&pdev->dev, priv->id, alcor_pci_cells,
                        ARRAY_SIZE(alcor_pci_cells), NULL, 0, NULL);
        if (ret < 0)
-               goto error_release_regions;
+               goto error_clear_drvdata;
 
        alcor_pci_aspm_ctrl(priv, 0);
 
        return 0;
 
+error_clear_drvdata:
+       pci_clear_master(pdev);
+       pci_set_drvdata(pdev, NULL);
 error_release_regions:
        pci_release_regions(pdev);
 error_free_ida:
@@ -343,6 +346,7 @@ static void alcor_pci_remove(struct pci_dev *pdev)
        ida_free(&alcor_pci_idr, priv->id);
 
        pci_release_regions(pdev);
+       pci_clear_master(pdev);
        pci_set_drvdata(pdev, NULL);
 }