Commit 5d0b8d0f authored by Neil Zhang's avatar Neil Zhang Committed by Felipe Balbi

usb: gadget: mv_udc: add section information

Tag the probe function as __devinit.
Tag the remove function as __devexit.
Signed-off-by: default avatarNeil Zhang <zhangwm@marvell.com>
Signed-off-by: default avatarFelipe Balbi <balbi@ti.com>
parent dde34cc5
...@@ -1909,7 +1909,7 @@ static void gadget_release(struct device *_dev) ...@@ -1909,7 +1909,7 @@ static void gadget_release(struct device *_dev)
complete(udc->done); complete(udc->done);
} }
static int mv_udc_remove(struct platform_device *dev) static int __devexit mv_udc_remove(struct platform_device *dev)
{ {
struct mv_udc *udc = the_controller; struct mv_udc *udc = the_controller;
int clk_i; int clk_i;
...@@ -1956,7 +1956,7 @@ static int mv_udc_remove(struct platform_device *dev) ...@@ -1956,7 +1956,7 @@ static int mv_udc_remove(struct platform_device *dev)
return 0; return 0;
} }
int mv_udc_probe(struct platform_device *dev) static int __devinit mv_udc_probe(struct platform_device *dev)
{ {
struct mv_usb_platform_data *pdata = dev->dev.platform_data; struct mv_usb_platform_data *pdata = dev->dev.platform_data;
struct mv_udc *udc; struct mv_udc *udc;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment