diff options
author | Axel Lin <axel.lin@ingics.com> | 2015-06-05 08:27:03 +0800 |
---|---|---|
committer | Kishon Vijay Abraham I <kishon@ti.com> | 2015-08-03 18:35:09 +0530 |
commit | 42ad8f6721720513f3569a67b157fcff068aa92d (patch) | |
tree | 57bd64b3b9bfd832f8db4c2797d324eb6b52528a /drivers/phy | |
parent | 8083526e0585e23447ac9ea94ca3f6d32d6dee8f (diff) |
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.h | 2 |
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; |