projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
dcb54fc
)
phy-sun4i-usb: Add missing EXPORT_SYMBOL_GPL for sun4i_usb_phy_set_squelch_detect
author
Hans de Goede
<hdegoede@redhat.com>
Fri, 31 Jul 2015 08:01:40 +0000
(10:01 +0200)
committer
Kishon Vijay Abraham I
<kishon@ti.com>
Sat, 1 Aug 2015 10:22:58 +0000
(15:52 +0530)
sun4i_usb_phy_set_squelch_detect is used by other code, which may be built
as a module, so it should be exported.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
drivers/phy/phy-sun4i-usb.c
patch
|
blob
|
blame
|
history
diff --git
a/drivers/phy/phy-sun4i-usb.c
b/drivers/phy/phy-sun4i-usb.c
index e17c539e4f6fbb138c04957532f3a329a8556b4a..2dad7e820ff0b16b7447b708f0c147b2e0289f02 100644
(file)
--- a/
drivers/phy/phy-sun4i-usb.c
+++ b/
drivers/phy/phy-sun4i-usb.c
@@
-212,6
+212,7
@@
void sun4i_usb_phy_set_squelch_detect(struct phy *_phy, bool enabled)
sun4i_usb_phy_write(phy, PHY_SQUELCH_DETECT, enabled ? 0 : 2, 2);
}
+EXPORT_SYMBOL_GPL(sun4i_usb_phy_set_squelch_detect);
static struct phy_ops sun4i_usb_phy_ops = {
.init = sun4i_usb_phy_init,