Browse Source

usb: gadget: atmel_usba_udc: delete __init marker for probe

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>
Peter Chen 11 years ago
parent
commit
03d6a9c9ae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/usb/gadget/atmel_usba_udc.c

+ 1 - 1
drivers/usb/gadget/atmel_usba_udc.c

@@ -1979,7 +1979,7 @@ static struct usba_ep * usba_udc_pdata(struct platform_device *pdev,
 	return eps;
 }
 
-static int __init usba_udc_probe(struct platform_device *pdev)
+static int usba_udc_probe(struct platform_device *pdev)
 {
 	struct resource *regs, *fifo;
 	struct clk *pclk, *hclk;