diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2015-03-13 11:09:42 -0700 |
---|---|---|
committer | Felipe Balbi <balbi@ti.com> | 2015-03-13 13:56:48 -0500 |
commit | 46f5cace1cd0559c335dfd4a5b8f57456d1bd6a1 (patch) | |
tree | 5ef4de70c952c01fd79feb9645649056552fc3c3 /include/linux/usb | |
parent | ab330cf3888d8e0779fa05a243d53ba9f53a7ba9 (diff) | |
download | blackbird-op-linux-46f5cace1cd0559c335dfd4a5b8f57456d1bd6a1.tar.gz blackbird-op-linux-46f5cace1cd0559c335dfd4a5b8f57456d1bd6a1.zip |
usb: phy: msm: Remove dead code
This code is no longer used now that mach-msm has been removed.
Delete it.
Cc: Felipe Balbi <balbi@ti.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-usb@vger.kernel.org
Cc: David Brown <davidb@codeaurora.org>
Cc: Bryan Huntsman <bryanh@codeaurora.org>
Cc: Daniel Walker <dwalker@fifo99.com>
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'include/linux/usb')
-rw-r--r-- | include/linux/usb/msm_hsusb.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/usb/msm_hsusb.h b/include/linux/usb/msm_hsusb.h index b0a39243295a..7dbecf9a4656 100644 --- a/include/linux/usb/msm_hsusb.h +++ b/include/linux/usb/msm_hsusb.h @@ -117,8 +117,6 @@ struct msm_otg_platform_data { enum otg_control_type otg_control; enum msm_usb_phy_type phy_type; void (*setup_gpio)(enum usb_otg_state state); - int (*link_clk_reset)(struct clk *link_clk, bool assert); - int (*phy_clk_reset)(struct clk *phy_clk); }; /** @@ -128,7 +126,6 @@ struct msm_otg_platform_data { * @irq: IRQ number assigned for HSUSB controller. * @clk: clock struct of usb_hs_clk. * @pclk: clock struct of usb_hs_pclk. - * @phy_reset_clk: clock struct of usb_phy_clk. * @core_clk: clock struct of usb_hs_core_clk. * @regs: ioremapped register base address. * @inputs: OTG state machine inputs(Id, SessValid etc). @@ -148,7 +145,6 @@ struct msm_otg { int irq; struct clk *clk; struct clk *pclk; - struct clk *phy_reset_clk; struct clk *core_clk; void __iomem *regs; #define ID 0 |