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

Commit ce7eb32f authored by Joe Perches's avatar Joe Perches Committed by Greg Kroah-Hartman
Browse files

drivers/usb/host/uhci-hcd.c: Remove unnecessary casts of pci_get_drvdata

parent c8c38de9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -569,7 +569,7 @@ static int uhci_init(struct usb_hcd *hcd)
 */
static void uhci_shutdown(struct pci_dev *pdev)
{
	struct usb_hcd *hcd = (struct usb_hcd *) pci_get_drvdata(pdev);
	struct usb_hcd *hcd = pci_get_drvdata(pdev);

	uhci_hc_died(hcd_to_uhci(hcd));
}