summaryrefslogtreecommitdiff
path: root/drivers/phy/phy-miphy365x.c
diff options
context:
space:
mode:
authorAxel Lin <axel.lin@ingics.com>2015-07-15 15:33:51 +0800
committerKishon Vijay Abraham I <kishon@ti.com>2015-08-03 18:35:09 +0530
commit4a9e5ca1a54a3cb4a5f85359f646638cec567607 (patch)
tree9f6048b6e0411c574ad9a6365bab0fe703c0ebf3 /drivers/phy/phy-miphy365x.c
parent42ad8f6721720513f3569a67b157fcff068aa92d (diff)
phy: Constify struct phy_ops variables
The phy_ops variables are never modified after initialized in these drivers, so make them const. Signed-off-by: Axel Lin <axel.lin@ingics.com> Acked-by: Patrice Chotard <patrice.chotard@st.com> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com>
Diffstat (limited to 'drivers/phy/phy-miphy365x.c')
-rw-r--r--drivers/phy/phy-miphy365x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/phy/phy-miphy365x.c b/drivers/phy/phy-miphy365x.c
index 0ff354d6e183..00a686a073ed 100644
--- a/drivers/phy/phy-miphy365x.c
+++ b/drivers/phy/phy-miphy365x.c
@@ -510,7 +510,7 @@ static struct phy *miphy365x_xlate(struct device *dev,
return miphy_phy->phy;
}
-static struct phy_ops miphy365x_ops = {
+static const struct phy_ops miphy365x_ops = {
.init = miphy365x_init,
.owner = THIS_MODULE,
};