diff options
author | Kishon Vijay Abraham I | 2015-08-19 16:16:27 +0530 |
---|---|---|
committer | Tom Rini | 2015-08-28 12:33:22 -0400 |
commit | 6f1af1e358b7a3fbae91af5ba3c8b0999bc1189f (patch) | |
tree | 2b294180574d06fc40972b7c14adb5e69d37c44f /board/ti/dra7xx | |
parent | 09cc14f4bcbf9df264cc3d23ee19a7233357945f (diff) |
board: ti: invoke clock API to enable and disable clocks
invoke enable_usb_clocks during board_usb_init and disable_usb_clocks
during board_usb_exit to enable and disable clocks respectively.
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'board/ti/dra7xx')
-rw-r--r-- | board/ti/dra7xx/evm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/board/ti/dra7xx/evm.c b/board/ti/dra7xx/evm.c index eaf123cf55a..890b6039e35 100644 --- a/board/ti/dra7xx/evm.c +++ b/board/ti/dra7xx/evm.c @@ -163,6 +163,7 @@ static struct ti_usb_phy_device usb_phy2_device = { int board_usb_init(int index, enum usb_init_type init) { + enable_usb_clocks(index); switch (index) { case 0: if (init == USB_INIT_DEVICE) { @@ -209,6 +210,7 @@ int board_usb_cleanup(int index, enum usb_init_type init) default: printf("Invalid Controller Index\n"); } + disable_usb_clocks(index); return 0; } |