This function forgets to call clk_disable() iff reading the USB module version register returns 0. --- The patch is against the recent Linus' tree. drivers/usb/musb/davinci.c | 2 ++ 1 file changed, 2 insertions(+) Index: linux-2.6/drivers/usb/musb/davinci.c =================================================================== --- linux-2.6.orig/drivers/usb/musb/davinci.c +++ linux-2.6/drivers/usb/musb/davinci.c @@ -445,6 +445,8 @@ int __init musb_platform_init(struct mus return 0; fail: + clk_disable(musb->clock); + usb_nop_xceiv_unregister(); return -ENODEV; } -- To unsubscribe from this list: send the line "unsubscribe linux-usb" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html