diff options
author | Roger Quadros <rogerq@ti.com> | 2014-02-27 09:18:25 -0500 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2014-03-13 18:25:16 -0400 |
commit | 775bb078e9af9747f7d4064939e1a50195c9fb4b (patch) | |
tree | 51b2a04e43a2314fc9ab5f3bd5d6e111c6e15922 /drivers/mfd/omap-usb-host.c | |
parent | fedb2e7c2d7b80dfda6d906f665ff01f368e7b51 (diff) |
mfd: omap-usb-host: Use proper clock name instead of alias
Use the proper clock name 'usbhost_120m_fck' instead of the
alias 'ehci_logic_fck'
Get rid of the 'ehci_logic_fck' alias from the OMAP3 hwmod data
as well.
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Roger Quadros <rogerq@ti.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'drivers/mfd/omap-usb-host.c')
-rw-r--r-- | drivers/mfd/omap-usb-host.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/drivers/mfd/omap-usb-host.c b/drivers/mfd/omap-usb-host.c index c31baa743986..865c2764a89d 100644 --- a/drivers/mfd/omap-usb-host.c +++ b/drivers/mfd/omap-usb-host.c | |||
@@ -692,10 +692,11 @@ static int usbhs_omap_probe(struct platform_device *pdev) | |||
692 | 692 | ||
693 | if (need_logic_fck) { | 693 | if (need_logic_fck) { |
694 | omap->ehci_logic_fck = devm_clk_get(dev, | 694 | omap->ehci_logic_fck = devm_clk_get(dev, |
695 | "ehci_logic_fck"); | 695 | "usbhost_120m_fck"); |
696 | if (IS_ERR(omap->ehci_logic_fck)) { | 696 | if (IS_ERR(omap->ehci_logic_fck)) { |
697 | ret = PTR_ERR(omap->ehci_logic_fck); | 697 | ret = PTR_ERR(omap->ehci_logic_fck); |
698 | dev_err(dev, "ehci_logic_fck failed:%d\n", ret); | 698 | dev_err(dev, "usbhost_120m_fck failed:%d\n", |
699 | ret); | ||
699 | goto err_mem; | 700 | goto err_mem; |
700 | } | 701 | } |
701 | } | 702 | } |