diff options
| -rw-r--r-- | drivers/usb/gadget/mv_udc_core.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/gadget/mv_udc_core.c b/drivers/usb/gadget/mv_udc_core.c index b62b2640deb0..b1a8146b9d50 100644 --- a/drivers/usb/gadget/mv_udc_core.c +++ b/drivers/usb/gadget/mv_udc_core.c | |||
| @@ -2083,7 +2083,7 @@ out: | |||
| 2083 | } | 2083 | } |
| 2084 | 2084 | ||
| 2085 | #ifdef CONFIG_PM | 2085 | #ifdef CONFIG_PM |
| 2086 | static int mv_udc_suspend(struct platform_device *_dev, pm_message_t state) | 2086 | static int mv_udc_suspend(struct device *_dev) |
| 2087 | { | 2087 | { |
| 2088 | struct mv_udc *udc = the_controller; | 2088 | struct mv_udc *udc = the_controller; |
| 2089 | 2089 | ||
| @@ -2092,7 +2092,7 @@ static int mv_udc_suspend(struct platform_device *_dev, pm_message_t state) | |||
| 2092 | return 0; | 2092 | return 0; |
| 2093 | } | 2093 | } |
| 2094 | 2094 | ||
| 2095 | static int mv_udc_resume(struct platform_device *_dev) | 2095 | static int mv_udc_resume(struct device *_dev) |
| 2096 | { | 2096 | { |
| 2097 | struct mv_udc *udc = the_controller; | 2097 | struct mv_udc *udc = the_controller; |
| 2098 | int retval; | 2098 | int retval; |
| @@ -2100,7 +2100,7 @@ static int mv_udc_resume(struct platform_device *_dev) | |||
| 2100 | retval = mv_udc_phy_init(udc->phy_regs); | 2100 | retval = mv_udc_phy_init(udc->phy_regs); |
| 2101 | if (retval) { | 2101 | if (retval) { |
| 2102 | dev_err(_dev, "phy initialization error %d\n", retval); | 2102 | dev_err(_dev, "phy initialization error %d\n", retval); |
| 2103 | goto error; | 2103 | return retval; |
| 2104 | } | 2104 | } |
| 2105 | udc_reset(udc); | 2105 | udc_reset(udc); |
| 2106 | ep0_reset(udc); | 2106 | ep0_reset(udc); |
| @@ -2122,7 +2122,7 @@ static struct platform_driver udc_driver = { | |||
| 2122 | .owner = THIS_MODULE, | 2122 | .owner = THIS_MODULE, |
| 2123 | .name = "pxa-u2o", | 2123 | .name = "pxa-u2o", |
| 2124 | #ifdef CONFIG_PM | 2124 | #ifdef CONFIG_PM |
| 2125 | .pm = mv_udc_pm_ops, | 2125 | .pm = &mv_udc_pm_ops, |
| 2126 | #endif | 2126 | #endif |
| 2127 | }, | 2127 | }, |
| 2128 | }; | 2128 | }; |
