From 071260ea76f83fa070e0833f10db0e0d61fa20a3 Mon Sep 17 00:00:00 2001 From: Felipe Balbi Date: Thu, 14 Mar 2013 17:59:06 +0200 Subject: [PATCH] --- yaml --- r: 364737 b: refs/heads/master c: b7fa5c2aec5be083eb2719b405089703608e9bc6 h: refs/heads/master i: 364735: 8697e020f9b70433e109146852688e1a8c4bc37f v: v3 --- [refs] | 2 +- trunk/include/linux/usb/phy.h | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/[refs] b/[refs] index 19b6544fd56c..f522a729051e 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 3bf6db9bbe4ad7b08b714c1857a703c1ef1b1e83 +refs/heads/master: b7fa5c2aec5be083eb2719b405089703608e9bc6 diff --git a/trunk/include/linux/usb/phy.h b/trunk/include/linux/usb/phy.h index b7c2217c585f..6b5978f57633 100644 --- a/trunk/include/linux/usb/phy.h +++ b/trunk/include/linux/usb/phy.h @@ -197,29 +197,29 @@ extern int usb_bind_phy(const char *dev_name, u8 index, #else static inline struct usb_phy *usb_get_phy(enum usb_phy_type type) { - return NULL; + return ERR_PTR(-ENXIO); } static inline struct usb_phy *devm_usb_get_phy(struct device *dev, enum usb_phy_type type) { - return NULL; + return ERR_PTR(-ENXIO); } static inline struct usb_phy *usb_get_phy_dev(struct device *dev, u8 index) { - return NULL; + return ERR_PTR(-ENXIO); } static inline struct usb_phy *devm_usb_get_phy_dev(struct device *dev, u8 index) { - return NULL; + return ERR_PTR(-ENXIO); } static inline struct usb_phy *devm_usb_get_phy_by_phandle(struct device *dev, const char *phandle, u8 index) { - return NULL; + return ERR_PTR(-ENXIO); } static inline void usb_put_phy(struct usb_phy *x)