소스 검색

usb: chipidea: remove superfluous pci_set_drvdata(pci, NULL)

As drvdata is cleared to NULL at probe failure or at removal by the driver
core, we don't have to call pci_set_drvdata(pci, NULL) any longer in each
driver.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Andy Shevchenko 12 년 전
부모
커밋
54b448e5e4
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      drivers/usb/chipidea/ci13xxx_pci.c

+ 0 - 1
drivers/usb/chipidea/ci13xxx_pci.c

@@ -111,7 +111,6 @@ static void ci13xxx_pci_remove(struct pci_dev *pdev)
 	struct platform_device *plat_ci = pci_get_drvdata(pdev);
 
 	ci13xxx_remove_device(plat_ci);
-	pci_set_drvdata(pdev, NULL);
 	pci_disable_device(pdev);
 }