]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
usb: gadget: fsl_udc_core: delete __init marker for probe
authorPeter Chen <peter.chen@freescale.com>
Sun, 18 May 2014 07:19:03 +0000 (15:19 +0800)
committerFelipe Balbi <balbi@ti.com>
Mon, 30 Jun 2014 17:32:43 +0000 (12:32 -0500)
The probe function may be probed deferal and called after .init
section has freed.

Signed-off-by: Peter Chen <peter.chen@freescale.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/gadget/fsl_udc_core.c

index 28e4fc957026746f25bb605cec0d54387e00d570..ccbb3023cf42cb48f7660ceca3f3e194f195e920 100644 (file)
@@ -2246,7 +2246,7 @@ static void fsl_udc_release(struct device *dev)
  * init resource for globle controller
  * Return the udc handle on success or NULL on failure
  ------------------------------------------------------------------*/
-static int __init struct_udc_setup(struct fsl_udc *udc,
+static int struct_udc_setup(struct fsl_udc *udc,
                struct platform_device *pdev)
 {
        struct fsl_usb2_platform_data *pdata;
@@ -2298,7 +2298,7 @@ static int __init struct_udc_setup(struct fsl_udc *udc,
  * ep0out is not used so do nothing here
  * ep0in should be taken care
  *--------------------------------------------------------------*/
-static int __init struct_ep_setup(struct fsl_udc *udc, unsigned char index,
+static int struct_ep_setup(struct fsl_udc *udc, unsigned char index,
                char *name, int link)
 {
        struct fsl_ep *ep = &udc->eps[index];
@@ -2331,7 +2331,7 @@ static int __init struct_ep_setup(struct fsl_udc *udc, unsigned char index,
  * all intialization operations implemented here except enabling usb_intr reg
  * board setup should have been done in the platform code
  */
-static int __init fsl_udc_probe(struct platform_device *pdev)
+static int fsl_udc_probe(struct platform_device *pdev)
 {
        struct fsl_usb2_platform_data *pdata;
        struct resource *res;