OSDN Git Service

atm: atmtcp: Constify atmtcp_v_dev_ops
authorRikard Falkeborn <rikard.falkeborn@gmail.com>
Sun, 27 Sep 2020 21:10:42 +0000 (23:10 +0200)
committerDavid S. Miller <davem@davemloft.net>
Mon, 28 Sep 2020 23:03:30 +0000 (16:03 -0700)
commit7028977965f146570c88125928cc5ed9781d0477
tree45f1ec136a6bfb648d01d064cbf40debf714e818
parente5f7e211b6aa19d5398abe3d91a508bf7f06ed54
atm: atmtcp: Constify atmtcp_v_dev_ops

The only usage of atmtcp_v_dev_ops is to pass its address to
atm_dev_register() which takes a pointer to const, and comparing its
address to another address, which does not modify it. Make it const to
allow the compiler to put it in read-only memory.

Signed-off-by: Rikard Falkeborn <rikard.falkeborn@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/atm/atmtcp.c