Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e5686ad8 authored by stephen hemminger's avatar stephen hemminger Committed by David S. Miller
Browse files

netdev: make net_device_ops const



More drivers where net_device_ops should be const.

Signed-off-by: default avatarStephen Hemminger <shemminger@vyatta.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1aff0cbe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -3080,7 +3080,7 @@ fw_exit:
	return status;
}

static struct net_device_ops be_netdev_ops = {
static const struct net_device_ops be_netdev_ops = {
	.ndo_open		= be_open,
	.ndo_stop		= be_close,
	.ndo_start_xmit		= be_xmit,
+1 −2
Original line number Diff line number Diff line
@@ -2260,8 +2260,7 @@ static int tile_net_get_mac(struct net_device *dev)
	return 0;
}


static struct net_device_ops tile_net_ops = {
static const struct net_device_ops tile_net_ops = {
	.ndo_open = tile_net_open,
	.ndo_stop = tile_net_stop,
	.ndo_start_xmit = tile_net_tx,