diff options
| author | Kiran Raparthy <kiran.kumar@linaro.org> | 2014-11-21 01:01:20 -0500 |
|---|---|---|
| committer | Felipe Balbi <balbi@ti.com> | 2014-11-21 10:05:45 -0500 |
| commit | df9f7b311db1edae7ec5e2c78aa92fce7b9dd34d (patch) | |
| tree | bdd19ab30b568bdfd3b94e82aee13de0b9462c2f /include/linux/usb | |
| parent | 18a4e65f229aec8ac23a036ff734864eefe4b89d (diff) | |
usb: phy: introduce usb_phy_set_event interface
PHY drivers require a generic interface to handle per-PHY events.
usb_phy_set_event interface sets event to phy event.
PHY drivers call this interface for each phy event.
Cc: Felipe Balbi <balbi@ti.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: linux-kernel@vger.kernel.org
Cc: linux-usb@vger.kernel.org
Cc: Android Kernel Team <kernel-team@android.com>
Cc: John Stultz <john.stultz@linaro.org>
Cc: Sumit Semwal <sumit.semwal@linaro.org>
Cc: Arve Hj�nnev�g <arve@android.com>
Cc: Benoit Goby <benoit@android.com>
[Original patch in Android from Todd]
Cc: Todd Poynor <toddpoynor@google.com>
Signed-off-by: Kiran Raparthy <kiran.kumar@linaro.org>
Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'include/linux/usb')
| -rw-r--r-- | include/linux/usb/phy.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/usb/phy.h b/include/linux/usb/phy.h index ac7d7913694f..f499c23e6342 100644 --- a/include/linux/usb/phy.h +++ b/include/linux/usb/phy.h | |||
| @@ -209,6 +209,7 @@ extern void usb_put_phy(struct usb_phy *); | |||
| 209 | extern void devm_usb_put_phy(struct device *dev, struct usb_phy *x); | 209 | extern void devm_usb_put_phy(struct device *dev, struct usb_phy *x); |
| 210 | extern int usb_bind_phy(const char *dev_name, u8 index, | 210 | extern int usb_bind_phy(const char *dev_name, u8 index, |
| 211 | const char *phy_dev_name); | 211 | const char *phy_dev_name); |
| 212 | extern void usb_phy_set_event(struct usb_phy *x, unsigned long event); | ||
| 212 | #else | 213 | #else |
| 213 | static inline struct usb_phy *usb_get_phy(enum usb_phy_type type) | 214 | static inline struct usb_phy *usb_get_phy(enum usb_phy_type type) |
| 214 | { | 215 | { |
| @@ -250,6 +251,10 @@ static inline int usb_bind_phy(const char *dev_name, u8 index, | |||
| 250 | { | 251 | { |
| 251 | return -EOPNOTSUPP; | 252 | return -EOPNOTSUPP; |
| 252 | } | 253 | } |
| 254 | |||
| 255 | static inline void usb_phy_set_event(struct usb_phy *x, unsigned long event) | ||
| 256 | { | ||
| 257 | } | ||
| 253 | #endif | 258 | #endif |
| 254 | 259 | ||
| 255 | static inline int | 260 | static inline int |
