aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/phy
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2015-06-05 08:27:03 +0800
committerKishon Vijay Abraham I <kishon@ti.com>2015-08-03 18:35:09 +0530
commit42ad8f6721720513f3569a67b157fcff068aa92d (patch)
tree57bd64b3b9bfd832f8db4c2797d324eb6b52528a /drivers/phy
parentphy-sun4i-usb: Only check vbus-det on power-on on boards with vbus-det (diff)
downloadlinux-dev-42ad8f6721720513f3569a67b157fcff068aa92d.tar.xz
linux-dev-42ad8f6721720513f3569a67b157fcff068aa92d.zip
phy: ulpi_phy: Add const qualifier to ops
The ops is never changed in ulpi_phy_create(), so make it const. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'drivers/phy')
-rw-r--r--drivers/phy/ulpi_phy.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/ulpi_phy.h b/drivers/phy/ulpi_phy.h
index ac49fb6285ee..f2ebe490a4bc 100644
--- a/drivers/phy/ulpi_phy.h
+++ b/drivers/phy/ulpi_phy.h
@@ -5,7 +5,7 @@
* and it's controller, which is always the parent.
*/
static inline struct phy
-*ulpi_phy_create(struct ulpi *ulpi, struct phy_ops *ops)
+*ulpi_phy_create(struct ulpi *ulpi, const struct phy_ops *ops)
{
struct phy *phy;
int ret;