diff options
author | Sergei Shtylyov <[email protected]> | 2010-03-25 13:14:31 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2010-04-30 09:25:09 -0700 |
commit | 7917a9df73c13822cc830f0ead0fb1b44a930616 (patch) | |
tree | 5ac50962755985f466cb9c48270e17f9a0a702a0 | |
parent | 13962c747915e4d7ef4cf92c36bd06a7fe648f0b (diff) |
MUSB: OMAP: don't call clk_put()
Remove duplicate/unbalanced call to clk_put() from musb_platform_exit() --
clk_put() gets called from musb_core.c anyway...
Signed-off-by: Sergei Shtylyov <[email protected]>
Signed-off-by: Felipe Balbi <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/usb/musb/omap2430.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/usb/musb/omap2430.c b/drivers/usb/musb/omap2430.c index 490cdf15ccb6..82592633502f 100644 --- a/drivers/usb/musb/omap2430.c +++ b/drivers/usb/musb/omap2430.c @@ -331,8 +331,5 @@ int musb_platform_exit(struct musb *musb) musb_platform_suspend(musb); - clk_put(musb->clock); - musb->clock = NULL; - return 0; } |