diff options
author | Bhumika Goyal <bhumirks@gmail.com> | 2017-08-09 12:19:15 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2017-08-10 08:43:50 +0300 |
commit | 46c4b7a5694ccfdc2659fc8beb8736d7fb1c9841 (patch) | |
tree | f866f5cdee6e320ab8d9f63c986b1191ad8030a7 /drivers/atm/solos-pci.c | |
parent | d78d6776bc958b16b9a8883278f36d62e3145409 (diff) | |
download | linux-46c4b7a5694ccfdc2659fc8beb8736d7fb1c9841.tar.xz |
atm: make atmdev_ops const
Make these structures const as they are either passed to the function
atm_dev_register having the corresponding argument as const or stored in
the ops field of a atm_dev structure, which is also const.
Done using Coccinelle.
Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/atm/solos-pci.c')
-rw-r--r-- | drivers/atm/solos-pci.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/atm/solos-pci.c b/drivers/atm/solos-pci.c index 8754793223cd..0df1a1c80b00 100644 --- a/drivers/atm/solos-pci.c +++ b/drivers/atm/solos-pci.c @@ -1187,7 +1187,7 @@ static int psend(struct atm_vcc *vcc, struct sk_buff *skb) return 0; } -static struct atmdev_ops fpga_ops = { +static const struct atmdev_ops fpga_ops = { .open = popen, .close = pclose, .ioctl = NULL, |