aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/ethernet/chelsio/cxgb/vsc7326.c
diff options
context:
space:
mode:
authorJulia Lawall <julia.lawall@lip6.fr>2015-12-08 21:42:09 +0100
committerDavid S. Miller <davem@davemloft.net>2015-12-08 23:27:54 -0500
commit264a4aca531bca789d45b9d68158a423e9d54eaf (patch)
treee7878fdb43e8cdee97c36ac8d537ab00964b433b /drivers/net/ethernet/chelsio/cxgb/vsc7326.c
parentbnx2x: remove rx_pkt/rx_calls (diff)
downloadlinux-dev-264a4aca531bca789d45b9d68158a423e9d54eaf.tar.xz
linux-dev-264a4aca531bca789d45b9d68158a423e9d54eaf.zip
chelsio: constify cmac_ops structures
The cmac_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 '')
-rw-r--r--drivers/net/ethernet/chelsio/cxgb/vsc7326.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/chelsio/cxgb/vsc7326.c b/drivers/net/ethernet/chelsio/cxgb/vsc7326.c
index b0cb388f5e12..6f30b6f78553 100644
--- a/drivers/net/ethernet/chelsio/cxgb/vsc7326.c
+++ b/drivers/net/ethernet/chelsio/cxgb/vsc7326.c
@@ -666,7 +666,7 @@ static void mac_destroy(struct cmac *mac)
kfree(mac);
}
-static struct cmac_ops vsc7326_ops = {
+static const struct cmac_ops vsc7326_ops = {
.destroy = mac_destroy,
.reset = mac_reset,
.interrupt_handler = mac_intr_handler,