[PATCH] phy: don't return error from the stubs

2014-04-02 Thread Heikki Krogerus
Returning 0 from the stubs for the functions that are used
for PHY controlling. The interface should not appear to be
failing with every operation when the framework is not
enabled.

This fixes an issue in dwc3 driver, where the driver fails
the moment first phy_*() call is made when the framework is
not enabled.

Reported-by: Chew, Chiau Ee chiau.ee.c...@intel.com
Signed-off-by: Heikki Krogerus heikki.kroge...@linux.intel.com
---
 include/linux/phy/phy.h | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/include/linux/phy/phy.h b/include/linux/phy/phy.h
index e2f5ca9..00d6949 100644
--- a/include/linux/phy/phy.h
+++ b/include/linux/phy/phy.h
@@ -174,22 +174,22 @@ void devm_of_phy_provider_unregister(struct device *dev,
 #else
 static inline int phy_pm_runtime_get(struct phy *phy)
 {
-   return -ENOSYS;
+   return 0;
 }
 
 static inline int phy_pm_runtime_get_sync(struct phy *phy)
 {
-   return -ENOSYS;
+   return 0;
 }
 
 static inline int phy_pm_runtime_put(struct phy *phy)
 {
-   return -ENOSYS;
+   return 0;
 }
 
 static inline int phy_pm_runtime_put_sync(struct phy *phy)
 {
-   return -ENOSYS;
+   return 0;
 }
 
 static inline void phy_pm_runtime_allow(struct phy *phy)
@@ -204,27 +204,27 @@ static inline void phy_pm_runtime_forbid(struct phy *phy)
 
 static inline int phy_init(struct phy *phy)
 {
-   return -ENOSYS;
+   return 0;
 }
 
 static inline int phy_exit(struct phy *phy)
 {
-   return -ENOSYS;
+   return 0;
 }
 
 static inline int phy_power_on(struct phy *phy)
 {
-   return -ENOSYS;
+   return 0;
 }
 
 static inline int phy_power_off(struct phy *phy)
 {
-   return -ENOSYS;
+   return 0;
 }
 
 static inline int phy_get_bus_width(struct phy *phy)
 {
-   return -ENOSYS;
+   return 0;
 }
 
 static inline void phy_set_bus_width(struct phy *phy, int bus_width)
-- 
1.9.1

--
To unsubscribe from this list: send the line unsubscribe linux-usb in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH] phy: don't return error from the stubs

2014-04-02 Thread Felipe Balbi
On Wed, Apr 02, 2014 at 03:25:43PM +0300, Heikki Krogerus wrote:
 Returning 0 from the stubs for the functions that are used
 for PHY controlling. The interface should not appear to be
 failing with every operation when the framework is not
 enabled.
 
 This fixes an issue in dwc3 driver, where the driver fails
 the moment first phy_*() call is made when the framework is
 not enabled.
 
 Reported-by: Chew, Chiau Ee chiau.ee.c...@intel.com
 Signed-off-by: Heikki Krogerus heikki.kroge...@linux.intel.com

Yeah, I'll ack this one because for platforms who really don't need to
SW control a PHY, we need at least *one* way of not depending on it.

Acked-by: Felipe Balbi ba...@ti.com

-- 
balbi


signature.asc
Description: Digital signature