net: atm: make atmdev_ops const
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>
This commit is contained in:

committed by
David S. Miller

parent
46c4b7a569
commit
800bb47e71
@@ -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
|
||||
};
|
||||
|
Reference in New Issue
Block a user