summaryrefslogtreecommitdiff
path: root/include/linux/usb
diff options
context:
space:
mode:
authorMayank Rana <mrana@codeaurora.org>2016-03-11 15:00:34 -0800
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-23 21:21:59 -0700
commit6fd80f2987e4f9ccee62213b0e8705d298a5ed9a (patch)
treec9dfcba9181bc202f49c4c828a8427d557e0a19b /include/linux/usb
parent9355dd60f57c4ad9d5743822caed7141ade91a8c (diff)
usb: Remove DPDM pulsing functionality
This change removes DP DM pulsing functionality related support from QUSB PHY driver as it is not required. Signed-off-by: Mayank Rana <mrana@codeaurora.org>
Diffstat (limited to 'include/linux/usb')
-rw-r--r--include/linux/usb/phy.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/include/linux/usb/phy.h b/include/linux/usb/phy.h
index 43965e530ee4..d25125402fda 100644
--- a/include/linux/usb/phy.h
+++ b/include/linux/usb/phy.h
@@ -126,9 +126,6 @@ struct usb_phy {
/* reset the PHY clocks */
int (*reset)(struct usb_phy *x);
-
- /* update DP/DM state */
- int (*change_dpdm)(struct usb_phy *x, int dpdm);
};
/**
@@ -289,14 +286,6 @@ usb_phy_set_power(struct usb_phy *x, unsigned mA)
return 0;
}
-static inline int
-usb_phy_change_dpdm(struct usb_phy *x, int dpdm)
-{
- if (x && x->change_dpdm)
- return x->change_dpdm(x, dpdm);
- return 0;
-}
-
/* Context: can sleep */
static inline int
usb_phy_set_suspend(struct usb_phy *x, int suspend)