aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/net
diff options
context:
space:
mode:
authorFlorian Fainelli <f.fainelli@gmail.com>2020-05-11 16:47:14 -0700
committerDavid S. Miller <davem@davemloft.net>2020-05-11 16:50:45 -0700
commit2fa3888bb7a9fb3966c77555c8cd6f4bd6a1439a (patch)
treebf5173d268037606a170efe95b2b0e936df1176a /net
parentMerge branch 'sfc-remove-nic_data-usage-in-common-code' (diff)
downloadwireguard-linux-2fa3888bb7a9fb3966c77555c8cd6f4bd6a1439a.tar.xz
wireguard-linux-2fa3888bb7a9fb3966c77555c8cd6f4bd6a1439a.zip
net: dsa: ocelot: Constify dsa_device_ops
ocelot_netdev_ops should be const since that is what the DSA layer expects. Signed-off-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r--net/dsa/tag_ocelot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dsa/tag_ocelot.c b/net/dsa/tag_ocelot.c
index 59de1315100f..b0c98ee4e13b 100644
--- a/net/dsa/tag_ocelot.c
+++ b/net/dsa/tag_ocelot.c
@@ -228,7 +228,7 @@ static struct sk_buff *ocelot_rcv(struct sk_buff *skb,
return skb;
}
-static struct dsa_device_ops ocelot_netdev_ops = {
+static const struct dsa_device_ops ocelot_netdev_ops = {
.name = "ocelot",
.proto = DSA_TAG_PROTO_OCELOT,
.xmit = ocelot_xmit,