net: atm: make atmdev_ops const
authorBhumika Goyal <bhumirks@gmail.com>
Wed, 9 Aug 2017 09:32:08 +0000 (15:02 +0530)
committerDavid S. Miller <davem@davemloft.net>
Thu, 10 Aug 2017 05:43:50 +0000 (22:43 -0700)
Make these const as they are only stored in the ops field of a atm_dev
structure, which is const.
Done using Coccinelle.

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/atm/clip.c
net/atm/lec.c
net/atm/mpc.c
net/atm/signaling.c

index f271a7bcf5b2e63702ba159cb44cfef2b730dba6..65f706e4344c39f47dc27c4f2b12d742c1dd0547 100644 (file)
@@ -617,7 +617,7 @@ static void atmarpd_close(struct atm_vcc *vcc)
        module_put(THIS_MODULE);
 }
 
-static struct atmdev_ops atmarpd_dev_ops = {
+static const struct atmdev_ops atmarpd_dev_ops = {
        .close = atmarpd_close
 };
 
index 093fe87077312b3174f8f105e7b0efdfe3679add..a3d93a1bb133e338f944e60e57a532fbae57aedb 100644 (file)
@@ -486,7 +486,7 @@ static void lec_atm_close(struct atm_vcc *vcc)
        module_put(THIS_MODULE);
 }
 
-static struct atmdev_ops lecdev_ops = {
+static const struct atmdev_ops lecdev_ops = {
        .close = lec_atm_close,
        .send = lec_atm_send
 };
index 680a4b9095a14dcf7eabb235300a19082746f7b6..5677147209e8181ce2e9eff308bc0ed82b548e45 100644 (file)
@@ -779,7 +779,7 @@ static void mpc_push(struct atm_vcc *vcc, struct sk_buff *skb)
        netif_rx(new_skb);
 }
 
-static struct atmdev_ops mpc_ops = { /* only send is required */
+static const struct atmdev_ops mpc_ops = { /* only send is required */
        .close  = mpoad_close,
        .send   = msg_from_mpoad
 };
index 983c3a21a13316a9eeafa29fc3ba53dfffe97c81..0a20f6e953ac94136a3cbd5995ca6ea061ec5959 100644 (file)
@@ -217,7 +217,7 @@ static void sigd_close(struct atm_vcc *vcc)
        read_unlock(&vcc_sklist_lock);
 }
 
-static struct atmdev_ops sigd_dev_ops = {
+static const struct atmdev_ops sigd_dev_ops = {
        .close = sigd_close,
        .send = sigd_send
 };