Commit 10eeb5e6 authored by Bhumika Goyal's avatar Bhumika Goyal Committed by David S. Miller

net: xilinx: constify net_device_ops structure

Declare net_device_ops structure as const as it is only stored in
the netdev_ops field of a net_device structure. This field is of type
const, so net_device_ops structures having same properties can be made
const too.
Done using Coccinelle:

@r1 disable optional_qualifier@
identifier i;
position p;
@@
static struct net_device_ops i@p={...};

@ok1@
identifier r1.i;
position p;
struct net_device ndev;
@@
ndev.netdev_ops=&i@p

@bad@
position p!={r1.p,ok1.p};
identifier r1.i;
@@
i@p

@depends on !bad disable optional_qualifier@
identifier r1.i;
@@
+const
struct net_device_ops i;

File size before:
   text	   data	    bss	    dec	    hex	filename
   6201	    744	      0	   6945	   1b21 ethernet/xilinx/xilinx_emaclite.o

File size after:
   text	   data	    bss	    dec	    hex	filename
   6745	    192	      0	   6937	   1b19 ethernet/xilinx/xilinx_emaclite.o
Signed-off-by: default avatarBhumika Goyal <bhumirks@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 30bd2f52
...@@ -1051,7 +1051,7 @@ static bool get_bool(struct platform_device *ofdev, const char *s) ...@@ -1051,7 +1051,7 @@ static bool get_bool(struct platform_device *ofdev, const char *s)
} }
} }
static struct net_device_ops xemaclite_netdev_ops; static const struct net_device_ops xemaclite_netdev_ops;
/** /**
* xemaclite_of_probe - Probe method for the Emaclite device. * xemaclite_of_probe - Probe method for the Emaclite device.
...@@ -1205,7 +1205,7 @@ xemaclite_poll_controller(struct net_device *ndev) ...@@ -1205,7 +1205,7 @@ xemaclite_poll_controller(struct net_device *ndev)
} }
#endif #endif
static struct net_device_ops xemaclite_netdev_ops = { static const struct net_device_ops xemaclite_netdev_ops = {
.ndo_open = xemaclite_open, .ndo_open = xemaclite_open,
.ndo_stop = xemaclite_close, .ndo_stop = xemaclite_close,
.ndo_start_xmit = xemaclite_send, .ndo_start_xmit = xemaclite_send,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment