aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTushar Behera <tushar.behera@linaro.org>2013-08-14 14:43:04 +0530
committerTushar Behera <tushar.behera@linaro.org>2014-02-07 10:53:52 +0530
commit7388a333504848727017e2868578b24b9b89da15 (patch)
treebcbb97d3a79709eef2c8e1a80570f29c6051510d
parent38dbfb59d1175ef458d006556061adeaa8751b72 (diff)
usb: misc: usb3503: Force late initializationllct/arndale-core-support
While not working as an I2C device, USB3503 chip needs to be reset after the USB PHY has been initialized for this to work properly. Currently there is no other way to ensure that USB3503 chip is probed after the USB PHY has been initialized, hence the last resort. Signed-off-by: Tushar Behera <tushar.behera@linaro.org>
-rw-r--r--drivers/usb/misc/usb3503.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/misc/usb3503.c b/drivers/usb/misc/usb3503.c
index a31641e18d1..ad8368d9666 100644
--- a/drivers/usb/misc/usb3503.c
+++ b/drivers/usb/misc/usb3503.c
@@ -339,7 +339,7 @@ static int __init usb3503_init(void)
return 0;
}
-module_init(usb3503_init);
+late_initcall(usb3503_init);
static void __exit usb3503_exit(void)
{