diff options
author | Julia Lawall <julia.lawall@lip6.fr> | 2016-01-03 14:09:37 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-01-04 21:58:28 -0500 |
commit | 46f85a9215d7352d886626e29c3fc3095bc5bec7 (patch) | |
tree | f83753d688e9204819fe6bb4d0bc3309f7737093 /drivers/net/ethernet/chelsio/cxgb/mv88e1xxx.c | |
parent | 46678612e13027b0ea901664504f3bf347756125 (diff) | |
download | linux-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/cxgb/mv88e1xxx.c')
-rw-r--r-- | drivers/net/ethernet/chelsio/cxgb/mv88e1xxx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/chelsio/cxgb/mv88e1xxx.c b/drivers/net/ethernet/chelsio/cxgb/mv88e1xxx.c index 71018a4fdf15..76ce6e538326 100644 --- a/drivers/net/ethernet/chelsio/cxgb/mv88e1xxx.c +++ b/drivers/net/ethernet/chelsio/cxgb/mv88e1xxx.c @@ -337,7 +337,7 @@ static void mv88e1xxx_destroy(struct cphy *cphy) kfree(cphy); } -static struct cphy_ops mv88e1xxx_ops = { +static const struct cphy_ops mv88e1xxx_ops = { .destroy = mv88e1xxx_destroy, .reset = mv88e1xxx_reset, .interrupt_enable = mv88e1xxx_interrupt_enable, |