summaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/chelsio/cxgb3/aq100x.c
diff options
context:
space:
mode:
authorJulia Lawall <julia.lawall@lip6.fr>2016-01-03 14:09:37 +0100
committerDavid S. Miller <davem@davemloft.net>2016-01-04 21:58:28 -0500
commit46f85a9215d7352d886626e29c3fc3095bc5bec7 (patch)
treef83753d688e9204819fe6bb4d0bc3309f7737093 /drivers/net/ethernet/chelsio/cxgb3/aq100x.c
parent46678612e13027b0ea901664504f3bf347756125 (diff)
downloadlinux-46f85a9215d7352d886626e29c3fc3095bc5bec7.tar.bz2
chelsio: constify cphy_ops structures
The cphy_ops structures are never modified, so declare them as const. Done with the help of Coccinelle. Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/chelsio/cxgb3/aq100x.c')
-rw-r--r--drivers/net/ethernet/chelsio/cxgb3/aq100x.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/chelsio/cxgb3/aq100x.c b/drivers/net/ethernet/chelsio/cxgb3/aq100x.c
index 341b7ef1508f..6af5d200e44f 100644
--- a/drivers/net/ethernet/chelsio/cxgb3/aq100x.c
+++ b/drivers/net/ethernet/chelsio/cxgb3/aq100x.c
@@ -247,7 +247,7 @@ static int aq100x_get_link_status(struct cphy *phy, int *link_ok,
return 0;
}
-static struct cphy_ops aq100x_ops = {
+static const struct cphy_ops aq100x_ops = {
.reset = aq100x_reset,
.intr_enable = aq100x_intr_enable,
.intr_disable = aq100x_intr_disable,