mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-06 01:49:46 +00:00
usb: cdns3: cdnsp-pci: remove redundant pci_disable_device() call
commite9c206324eupstream. The cdnsp-pci driver uses pcim_enable_device() to enable a PCI device, which means the device will be automatically disabled on driver detach through the managed device framework. The manual pci_disable_device() call in the error path is therefore redundant. Found via static anlaysis and this is similar to commit99ca0b57e4("thermal: intel: int340x: processor: Fix warning during module unload"). Fixes:3d82904559("usb: cdnsp: cdns3 Add main part of Cadence USBSSP DRD Driver") Cc: stable@vger.kernel.org Signed-off-by: Miaoqian Lin <linmq006@gmail.com> Link: https://lore.kernel.org/r/20250903141613.2535472-1-linmq006@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
cde10a9473
commit
9895463ba6
@@ -91,7 +91,7 @@ static int cdnsp_pci_probe(struct pci_dev *pdev,
|
||||
cdnsp = kzalloc(sizeof(*cdnsp), GFP_KERNEL);
|
||||
if (!cdnsp) {
|
||||
ret = -ENOMEM;
|
||||
goto disable_pci;
|
||||
goto put_pci;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -174,9 +174,6 @@ free_cdnsp:
|
||||
if (!pci_is_enabled(func))
|
||||
kfree(cdnsp);
|
||||
|
||||
disable_pci:
|
||||
pci_disable_device(pdev);
|
||||
|
||||
put_pci:
|
||||
pci_dev_put(func);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user