diff options
Diffstat (limited to 'drivers/usb/host/uhci-grlib.c')
| -rw-r--r-- | drivers/usb/host/uhci-grlib.c | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/usb/host/uhci-grlib.c b/drivers/usb/host/uhci-grlib.c index 511bfc46dd78..53c23ff7d685 100644 --- a/drivers/usb/host/uhci-grlib.c +++ b/drivers/usb/host/uhci-grlib.c @@ -157,9 +157,7 @@ err_rmr:  static int uhci_hcd_grlib_remove(struct platform_device *op)  { -	struct usb_hcd *hcd = dev_get_drvdata(&op->dev); - -	dev_set_drvdata(&op->dev, NULL); +	struct usb_hcd *hcd = platform_get_drvdata(op);  	dev_dbg(&op->dev, "stopping GRLIB GRUSBHC UHCI USB Controller\n"); @@ -183,7 +181,7 @@ static int uhci_hcd_grlib_remove(struct platform_device *op)   */  static void uhci_hcd_grlib_shutdown(struct platform_device *op)  { -	struct usb_hcd *hcd = dev_get_drvdata(&op->dev); +	struct usb_hcd *hcd = platform_get_drvdata(op);  	uhci_hc_died(hcd_to_uhci(hcd));  }  | 

