summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/include/mach/usb_phy.h
diff options
context:
space:
mode:
authorVenu Byravarasu <vbyravarasu@nvidia.com>2012-10-05 19:13:07 +0530
committerSimone Willett <swillett@nvidia.com>2012-10-08 14:54:21 -0700
commit16af4c840e60152147b8ae3ff11e63c79b952295 (patch)
tree4aa6dc04bed856eae8e5628df3274b878c931c25 /arch/arm/mach-tegra/include/mach/usb_phy.h
parenteaa124ef55a57661565a338e35061a8f658b562c (diff)
arm: tegra: removed APIs similar to generic USB phy APIs
As very similar APIs are added to generic USB phy interface, removed corresponding local phy APIs. bug 1057412 Change-Id: Iacafdb35759c11f164969158eecef18e81a69db1 Signed-off-by: Venu Byravarasu <vbyravarasu@nvidia.com> Reviewed-on: http://git-master/r/141980 Reviewed-by: Automatic_Commit_Validation_User Tested-by: Krishna Yarlagadda <kyarlagadda@nvidia.com> Reviewed-by: Venkat Moganty <vmoganty@nvidia.com>
Diffstat (limited to 'arch/arm/mach-tegra/include/mach/usb_phy.h')
-rw-r--r--arch/arm/mach-tegra/include/mach/usb_phy.h22
1 files changed, 1 insertions, 21 deletions
diff --git a/arch/arm/mach-tegra/include/mach/usb_phy.h b/arch/arm/mach-tegra/include/mach/usb_phy.h
index c721642c4417..043a5f015021 100644
--- a/arch/arm/mach-tegra/include/mach/usb_phy.h
+++ b/arch/arm/mach-tegra/include/mach/usb_phy.h
@@ -30,20 +30,10 @@ struct tegra_usb_phy;
struct tegra_usb_phy *tegra_usb_phy_open(struct platform_device *pdev);
/**
- * Closes the phy controller and its resources
- */
-void tegra_usb_phy_close(struct tegra_usb_phy *phy);
-
-/**
* Handles interrupts specific to the phy interface
* Note: udc or ehci driver will handle the controller interrupts
*/
-int tegra_usb_phy_irq(struct tegra_usb_phy *phy);
-
-/**
- * Initializes the phy specific functions after phy is power on
- */
-int tegra_usb_phy_init(struct tegra_usb_phy *phy);
+irqreturn_t tegra_usb_phy_irq(struct tegra_usb_phy *phy);
/**
* Handles phy interface specific functionality after driver reset
@@ -57,11 +47,6 @@ int tegra_usb_phy_reset(struct tegra_usb_phy *phy);
int tegra_usb_phy_pre_suspend(struct tegra_usb_phy *phy);
/**
- * Handles phy interface specific suspend functionality
- */
-int tegra_usb_phy_suspend(struct tegra_usb_phy *phy);
-
-/**
* Handles phy interface specific functionality after driver suspend
*/
int tegra_usb_phy_post_suspend(struct tegra_usb_phy *phy);
@@ -73,11 +58,6 @@ int tegra_usb_phy_post_suspend(struct tegra_usb_phy *phy);
int tegra_usb_phy_pre_resume(struct tegra_usb_phy *phy, bool remote_wakeup);
/**
- * Handles phy interface specific resume functionality
- */
-int tegra_usb_phy_resume(struct tegra_usb_phy *phy);
-
-/**
* Handles phy interface specific functionality after driver resume
*/
int tegra_usb_phy_post_resume(struct tegra_usb_phy *phy);