Commit 0fbc7c50 authored by Mike Rapoport's avatar Mike Rapoport Committed by Greg Kroah-Hartman
Browse files

staging: sm750fb: disable PCI device if lynxfb_pci_probe fails



In case of error during lynxfb_pci_probe, the function returned without
calling pci_disable_device. Fix it by adding pci_disable_device on the
error cleanup path.

Signed-off-by: default avatarMike Rapoport <mike.rapoport@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent d9d3e025
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1132,6 +1132,7 @@ static int lynxfb_pci_probe(struct pci_dev *pdev,
err_map:
	kfree(sm750_dev);
err_share:
	pci_disable_device(pdev);
err_enable:
	return -ENODEV;
}