Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 364737
b: refs/heads/master
c: b7fa5c2
h: refs/heads/master
i:
  364735: 8697e02
v: v3
  • Loading branch information
Felipe Balbi committed Mar 18, 2013
1 parent edb4e31 commit 071260e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3bf6db9bbe4ad7b08b714c1857a703c1ef1b1e83
refs/heads/master: b7fa5c2aec5be083eb2719b405089703608e9bc6
10 changes: 5 additions & 5 deletions trunk/include/linux/usb/phy.h
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 071260e

Please sign in to comment.