netdev: drivers should make ethtool_ops const
authorStephen Hemminger <shemminger@vyatta.com>
Wed, 2 Sep 2009 08:03:33 +0000 (01:03 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 2 Sep 2009 08:03:33 +0000 (01:03 -0700)
No need to put ethtool_ops in data, they should be const.

Signed-off-by: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
50 files changed:
arch/um/drivers/net_kern.c
drivers/firewire/net.c
drivers/ieee1394/eth1394.c
drivers/infiniband/hw/nes/nes_nic.c
drivers/net/arm/ep93xx_eth.c
drivers/net/arm/ixp4xx_eth.c
drivers/net/arm/ks8695net.c
drivers/net/atl1c/atl1c_ethtool.c
drivers/net/atl1e/atl1e_ethtool.c
drivers/net/atlx/atl2.c
drivers/net/benet/be.h
drivers/net/benet/be_ethtool.c
drivers/net/bfin_mac.c
drivers/net/bnx2x_main.c
drivers/net/enic/enic_main.c
drivers/net/igb/igb_ethtool.c
drivers/net/ipg.c
drivers/net/korina.c
drivers/net/ks8842.c
drivers/net/macb.c
drivers/net/netxen/netxen_nic.h
drivers/net/netxen/netxen_nic_ethtool.c
drivers/net/ps3_gelic_net.c
drivers/net/ps3_gelic_wireless.c
drivers/net/sfc/ethtool.c
drivers/net/sfc/ethtool.h
drivers/net/tehuti.c
drivers/net/usb/asix.c
drivers/net/usb/catc.c
drivers/net/usb/dm9601.c
drivers/net/usb/hso.c
drivers/net/usb/kaweth.c
drivers/net/usb/mcs7830.c
drivers/net/usb/pegasus.c
drivers/net/usb/rtl8150.c
drivers/net/usb/smsc95xx.c
drivers/net/usb/usbnet.c
drivers/net/veth.c
drivers/net/virtio_net.c
drivers/net/wireless/libertas/dev.h
drivers/net/wireless/libertas/ethtool.c
drivers/net/xen-netfront.c
drivers/s390/net/qeth_l2_main.c
drivers/s390/net/qeth_l3_main.c
drivers/staging/at76_usb/at76_usb.c
drivers/staging/octeon/ethernet-mdio.c
drivers/staging/octeon/ethernet-mdio.h
drivers/staging/sxg/sxg.h
drivers/staging/sxg/sxg_ethtool.c
drivers/usb/gadget/u_ether.c

index 4c75409bc09c8267a38bfe36e62580466846d975..f114813ae258eabe782048061b2ed2b44631e2b8 100644 (file)
@@ -285,7 +285,7 @@ static void uml_net_get_drvinfo(struct net_device *dev,
        strcpy(info->version, "42");
 }
 
-static struct ethtool_ops uml_net_ethtool_ops = {
+static const struct ethtool_ops uml_net_ethtool_ops = {
        .get_drvinfo    = uml_net_get_drvinfo,
        .get_link       = ethtool_op_get_link,
 };
index d923d1dc458fbe5405f90d9a24fa4f19afa900d9..84edc8b84c621a7155fd6cfef32e6cfe710b15c0 100644 (file)
@@ -1342,7 +1342,7 @@ static void fwnet_get_drvinfo(struct net_device *net,
        strcpy(info->bus_info, "ieee1394");
 }
 
-static struct ethtool_ops fwnet_ethtool_ops = {
+static const struct ethtool_ops fwnet_ethtool_ops = {
        .get_drvinfo = fwnet_get_drvinfo,
 };
 
index 1ad8785e398b1911229469dd4d84ecd81ed4c60b..3a62c4c2d4199de4402d9bbd0f308f2ece9e6b1a 100644 (file)
@@ -173,7 +173,7 @@ static netdev_tx_t ether1394_tx(struct sk_buff *skb,
                                struct net_device *dev);
 static void ether1394_iso(struct hpsb_iso *iso);
 
-static struct ethtool_ops ethtool_ops;
+static const struct ethtool_ops ethtool_ops;
 
 static int ether1394_write(struct hpsb_host *host, int srcid, int destid,
                           quadlet_t *data, u64 addr, size_t len, u16 flags);
@@ -1706,7 +1706,7 @@ static void ether1394_get_drvinfo(struct net_device *dev,
        strcpy(info->bus_info, "ieee1394"); /* FIXME provide more detail? */
 }
 
-static struct ethtool_ops ethtool_ops = {
+static const struct ethtool_ops ethtool_ops = {
        .get_drvinfo = ether1394_get_drvinfo
 };
 
index c6e6611d3016edd624d8675d1f99c44d4be2ef9f..538e409d451528f3c3faa62976b5c79e2879c042 100644 (file)
@@ -1508,7 +1508,7 @@ static int nes_netdev_set_settings(struct net_device *netdev, struct ethtool_cmd
 }
 
 
-static struct ethtool_ops nes_ethtool_ops = {
+static const struct ethtool_ops nes_ethtool_ops = {
        .get_link = ethtool_op_get_link,
        .get_settings = nes_netdev_get_settings,
        .set_settings = nes_netdev_set_settings,
index fbf4645417d496941f5e6fdccba6c988ec136808..2be49c817995d45e7802fee8eeb61b0e99cf7ad8 100644 (file)
@@ -762,7 +762,7 @@ static u32 ep93xx_get_link(struct net_device *dev)
        return mii_link_ok(&ep->mii);
 }
 
-static struct ethtool_ops ep93xx_ethtool_ops = {
+static const struct ethtool_ops ep93xx_ethtool_ops = {
        .get_drvinfo            = ep93xx_get_drvinfo,
        .get_settings           = ep93xx_get_settings,
        .set_settings           = ep93xx_set_settings,
index 3fe09876e76d3f5c62e0878adf7545317760a2c3..691b81eb0f467d0aa39788aa4efb97206b776eb0 100644 (file)
@@ -802,7 +802,7 @@ static int ixp4xx_nway_reset(struct net_device *dev)
        return phy_start_aneg(port->phydev);
 }
 
-static struct ethtool_ops ixp4xx_ethtool_ops = {
+static const struct ethtool_ops ixp4xx_ethtool_ops = {
        .get_drvinfo = ixp4xx_get_drvinfo,
        .get_settings = ixp4xx_get_settings,
        .set_settings = ixp4xx_set_settings,
index 35cd264abae70e6436e9e0e2a1288a7aa5484c89..4f702d52606a992a861303a5dbb786d390907d63 100644 (file)
@@ -1063,7 +1063,7 @@ ks8695_get_drvinfo(struct net_device *ndev, struct ethtool_drvinfo *info)
                sizeof(info->bus_info));
 }
 
-static struct ethtool_ops ks8695_ethtool_ops = {
+static const struct ethtool_ops ks8695_ethtool_ops = {
        .get_msglevel   = ks8695_get_msglevel,
        .set_msglevel   = ks8695_set_msglevel,
        .get_settings   = ks8695_get_settings,
index 00d11b480af30b48956bb1633a329f282c584222..9b1e0eaebb5ccd41751538031f2f0e4b485baccf 100644 (file)
@@ -294,7 +294,7 @@ static int atl1c_nway_reset(struct net_device *netdev)
        return 0;
 }
 
-static struct ethtool_ops atl1c_ethtool_ops = {
+static const struct ethtool_ops atl1c_ethtool_ops = {
        .get_settings           = atl1c_get_settings,
        .set_settings           = atl1c_set_settings,
        .get_drvinfo            = atl1c_get_drvinfo,
index 4003955d7a9650b3ed095ee516b3f671f666e37d..60edb9f232bb8a6d8ce0623f7346ddab5fe3ef52 100644 (file)
@@ -378,7 +378,7 @@ static int atl1e_nway_reset(struct net_device *netdev)
        return 0;
 }
 
-static struct ethtool_ops atl1e_ethtool_ops = {
+static const struct ethtool_ops atl1e_ethtool_ops = {
        .get_settings           = atl1e_get_settings,
        .set_settings           = atl1e_set_settings,
        .get_drvinfo            = atl1e_get_drvinfo,
index d0bcb572d51ec12572b48cbc0a0fc574d4cea22d..10c06b97001f1885120ac197e90219392fd57fea 100644 (file)
@@ -2094,7 +2094,7 @@ static int atl2_nway_reset(struct net_device *netdev)
        return 0;
 }
 
-static struct ethtool_ops atl2_ethtool_ops = {
+static const struct ethtool_ops atl2_ethtool_ops = {
        .get_settings           = atl2_get_settings,
        .set_settings           = atl2_set_settings,
        .get_drvinfo            = atl2_get_drvinfo,
index beb131399231a1cc3134b9581bc0174365412d23..6c45a2233d0dd7998c2ca09057f68f46361fb42a 100644 (file)
@@ -259,7 +259,7 @@ struct be_adapter {
        bool promiscuous;
 };
 
-extern struct ethtool_ops be_ethtool_ops;
+extern const struct ethtool_ops be_ethtool_ops;
 
 #define drvr_stats(adapter)            (&adapter->stats.drvr_stats)
 
index c480c19200d782d9a306178a876a4d3b0a353669..4ff3cc4654065082b1d49bec9b114c063b7d2e4b 100644 (file)
@@ -332,7 +332,7 @@ be_set_pauseparam(struct net_device *netdev, struct ethtool_pauseparam *ecmd)
        return status;
 }
 
-struct ethtool_ops be_ethtool_ops = {
+const struct ethtool_ops be_ethtool_ops = {
        .get_settings = be_get_settings,
        .get_drvinfo = be_get_drvinfo,
        .get_link = ethtool_op_get_link,
index f580b21eabd1274ecad12e869cd7f0526d89e18f..14bd3801f7d37296a82c68487ae1847ff8848069 100644 (file)
@@ -491,7 +491,7 @@ static void bfin_mac_ethtool_getdrvinfo(struct net_device *dev,
        strcpy(info->bus_info, dev_name(&dev->dev));
 }
 
-static struct ethtool_ops bfin_mac_ethtool_ops = {
+static const struct ethtool_ops bfin_mac_ethtool_ops = {
        .get_settings = bfin_mac_ethtool_getsettings,
        .set_settings = bfin_mac_ethtool_setsettings,
        .get_link = ethtool_op_get_link,
index e2e50267cc64d8b177ce1a8f81f43a1c8378f3e5..20f0ed956df26b57c51dbe8631cfa62d6a55b19e 100644 (file)
@@ -10606,7 +10606,7 @@ static int bnx2x_phys_id(struct net_device *dev, u32 data)
        return 0;
 }
 
-static struct ethtool_ops bnx2x_ethtool_ops = {
+static const struct ethtool_ops bnx2x_ethtool_ops = {
        .get_settings           = bnx2x_get_settings,
        .set_settings           = bnx2x_set_settings,
        .get_drvinfo            = bnx2x_get_drvinfo,
index 49912eb2a33832d57142865c5d7e2f41d129fd48..2ea036333db2740679c5a7a3c648e3d50fbaa203 100644 (file)
@@ -256,7 +256,7 @@ static void enic_set_msglevel(struct net_device *netdev, u32 value)
        enic->msg_enable = value;
 }
 
-static struct ethtool_ops enic_ethtool_ops = {
+static const struct ethtool_ops enic_ethtool_ops = {
        .get_settings = enic_get_settings,
        .get_drvinfo = enic_get_drvinfo,
        .get_msglevel = enic_get_msglevel,
index 114ccab1f2beb62fdae768e22f34f4cf3df50e87..d004c359244c9b03e2e5e753f5300abc15be8bc1 100644 (file)
@@ -2016,7 +2016,7 @@ static void igb_get_strings(struct net_device *netdev, u32 stringset, u8 *data)
        }
 }
 
-static struct ethtool_ops igb_ethtool_ops = {
+static const struct ethtool_ops igb_ethtool_ops = {
        .get_settings           = igb_get_settings,
        .set_settings           = igb_set_settings,
        .get_drvinfo            = igb_get_drvinfo,
index 382c5532e6c5ec69e89bf36a87aa2e2f6377e070..9f7b5d4172b8ba58e11c10ea4c8192f7f6565de7 100644 (file)
@@ -2186,7 +2186,7 @@ static int ipg_nway_reset(struct net_device *dev)
        return rc;
 }
 
-static struct ethtool_ops ipg_ethtool_ops = {
+static const struct ethtool_ops ipg_ethtool_ops = {
        .get_settings = ipg_get_settings,
        .set_settings = ipg_set_settings,
        .nway_reset   = ipg_nway_reset,
index 51ca54c8ec5709acd5af92b77f79ce425ec5f27e..03199fa10003179ba5fe399a2be061e4c7e13230 100644 (file)
@@ -743,7 +743,7 @@ static u32 netdev_get_link(struct net_device *dev)
        return mii_link_ok(&lp->mii_if);
 }
 
-static struct ethtool_ops netdev_ethtool_ops = {
+static const struct ethtool_ops netdev_ethtool_ops = {
        .get_drvinfo            = netdev_get_drvinfo,
        .get_settings           = netdev_get_settings,
        .set_settings           = netdev_set_settings,
index 6e74aa9eea4451f84b06e2a190f65842d57e9912..99e954167fa6da32251a3c68e1f1092a367c8186 100644 (file)
@@ -619,7 +619,7 @@ static const struct net_device_ops ks8842_netdev_ops = {
        .ndo_validate_addr      = eth_validate_addr
 };
 
-static struct ethtool_ops ks8842_ethtool_ops = {
+static const struct ethtool_ops ks8842_ethtool_ops = {
        .get_link               = ethtool_op_get_link,
 };
 
index 01aaca99d29f1576fbaa71a915ded306ccfdaeb2..fb65b427c69227231e125b882a6de80b6e741254 100644 (file)
@@ -1079,7 +1079,7 @@ static void macb_get_drvinfo(struct net_device *dev,
        strcpy(info->bus_info, dev_name(&bp->pdev->dev));
 }
 
-static struct ethtool_ops macb_ethtool_ops = {
+static const struct ethtool_ops macb_ethtool_ops = {
        .get_settings           = macb_get_settings,
        .set_settings           = macb_set_settings,
        .get_drvinfo            = macb_get_drvinfo,
index 449d3511628f71c9426698ce3fcd165d8474d144..224a74691312cdcd9d428f717e50c4a02a272217 100644 (file)
@@ -1410,6 +1410,6 @@ extern void netxen_change_ringparam(struct netxen_adapter *adapter);
 extern int netxen_rom_fast_read(struct netxen_adapter *adapter, int addr,
                                int *valp);
 
-extern struct ethtool_ops netxen_nic_ethtool_ops;
+extern const struct ethtool_ops netxen_nic_ethtool_ops;
 
 #endif                         /* __NETXEN_NIC_H_ */
index 3886135006e1a4f04bf9768f8f86547292d4115d..e376a1c4eb061ca0f68cf1f7efcd70e6f8edac3c 100644 (file)
@@ -963,7 +963,7 @@ static int netxen_nic_set_flags(struct net_device *netdev, u32 data)
        return 0;
 }
 
-struct ethtool_ops netxen_nic_ethtool_ops = {
+const struct ethtool_ops netxen_nic_ethtool_ops = {
        .get_settings = netxen_nic_get_settings,
        .set_settings = netxen_nic_set_settings,
        .get_drvinfo = netxen_nic_get_drvinfo,
index a3932c9f3406c9d4e75967fc392d759cffb78330..b211613e9dbd773e35b95012cbb9793dcd01ffe9 100644 (file)
@@ -1346,7 +1346,7 @@ done:
        return status;
 }
 
-static struct ethtool_ops gelic_ether_ethtool_ops = {
+static const struct ethtool_ops gelic_ether_ethtool_ops = {
        .get_drvinfo    = gelic_net_get_drvinfo,
        .get_settings   = gelic_ether_get_settings,
        .get_link       = ethtool_op_get_link,
index 6932b08d746b38b1c830d3ea3f720496562e9129..227b141c4fbd3549bd0664bdb5288defa0657473 100644 (file)
@@ -2714,7 +2714,7 @@ static const struct net_device_ops gelic_wl_netdevice_ops = {
 #endif
 };
 
-static struct ethtool_ops gelic_wl_ethtool_ops = {
+static const struct ethtool_ops gelic_wl_ethtool_ops = {
        .get_drvinfo    = gelic_net_get_drvinfo,
        .get_link       = gelic_wl_get_link,
        .get_tx_csum    = ethtool_op_get_tx_csum,
index 997ea2a3d53f144269efaccd6999b90870184596..45018f283ffaa1c009dfe31fbcfec8e1db918cbd 100644 (file)
@@ -731,7 +731,7 @@ static void efx_ethtool_get_pauseparam(struct net_device *net_dev,
 }
 
 
-struct ethtool_ops efx_ethtool_ops = {
+const struct ethtool_ops efx_ethtool_ops = {
        .get_settings           = efx_ethtool_get_settings,
        .set_settings           = efx_ethtool_set_settings,
        .get_drvinfo            = efx_ethtool_get_drvinfo,
index 3628e43df14d34cc388940c59da4769a6682b21f..295ead403356598c12488bff0b0df6d6e9d8ad39 100644 (file)
@@ -22,6 +22,6 @@ extern int efx_ethtool_get_settings(struct net_device *net_dev,
 extern int efx_ethtool_set_settings(struct net_device *net_dev,
                                    struct ethtool_cmd *ecmd);
 
-extern struct ethtool_ops efx_ethtool_ops;
+extern const struct ethtool_ops efx_ethtool_ops;
 
 #endif /* EFX_ETHTOOL_H */
index 918d4c9e49b3eb064b3e8cae9a4b1b9fd6386d1d..ec9dfb251f30173ff6a243b94f3b32cc4af6560e 100644 (file)
@@ -2428,7 +2428,7 @@ static void bdx_get_ethtool_stats(struct net_device *netdev,
  */
 static void bdx_ethtool_ops(struct net_device *netdev)
 {
-       static struct ethtool_ops bdx_ethtool_ops = {
+       static const struct ethtool_ops bdx_ethtool_ops = {
                .get_settings = bdx_get_settings,
                .get_drvinfo = bdx_get_drvinfo,
                .get_link = ethtool_op_get_link,
index 87b4a0289919d1d96e52262a7b28bb88e88ed390..6ce7f775bb7482a362d4dc1320570847bcfe7511 100644 (file)
@@ -731,7 +731,7 @@ static int asix_ioctl (struct net_device *net, struct ifreq *rq, int cmd)
 /* We need to override some ethtool_ops so we require our
    own structure so we don't interfere with other usbnet
    devices that may be connected at the same time. */
-static struct ethtool_ops ax88172_ethtool_ops = {
+static const struct ethtool_ops ax88172_ethtool_ops = {
        .get_drvinfo            = asix_get_drvinfo,
        .get_link               = asix_get_link,
        .get_msglevel           = usbnet_get_msglevel,
@@ -873,7 +873,7 @@ out:
        return ret;
 }
 
-static struct ethtool_ops ax88772_ethtool_ops = {
+static const struct ethtool_ops ax88772_ethtool_ops = {
        .get_drvinfo            = asix_get_drvinfo,
        .get_link               = asix_get_link,
        .get_msglevel           = usbnet_get_msglevel,
index 0ffc0c6d03be619c6be9736330c33821e94f63a4..2bed6b087d164b9f4a5cca1567b9b2688cabab71 100644 (file)
@@ -698,7 +698,7 @@ static int catc_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
        return 0;
 }
 
-static struct ethtool_ops ops = {
+static const struct ethtool_ops ops = {
        .get_drvinfo = catc_get_drvinfo,
        .get_settings = catc_get_settings,
        .get_link = ethtool_op_get_link
index 1d3730d6690fc90c640ac87bc655f04b19ad5eff..72470f77f5561368757002eb46548660edc499f7 100644 (file)
@@ -356,7 +356,7 @@ static int dm9601_ioctl(struct net_device *net, struct ifreq *rq, int cmd)
        return generic_mii_ioctl(&dev->mii, if_mii(rq), cmd, NULL);
 }
 
-static struct ethtool_ops dm9601_ethtool_ops = {
+static const struct ethtool_ops dm9601_ethtool_ops = {
        .get_drvinfo    = dm9601_get_drvinfo,
        .get_link       = dm9601_get_link,
        .get_msglevel   = usbnet_get_msglevel,
index 123f9b84dd299e1c81c10d2e688291139ef9a8df..3f9c92a2afcbddf91e4d7e47746106872fdba9e1 100644 (file)
@@ -829,7 +829,7 @@ static void hso_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *info
        usb_make_path(odev->parent->usb, info->bus_info, sizeof info->bus_info);
 }
 
-static struct ethtool_ops ops = {
+static const struct ethtool_ops ops = {
        .get_drvinfo = hso_get_drvinfo,
        .get_link = ethtool_op_get_link
 };
index 7f397365b43743f3e681e6cd368ef1c08e48d22d..e2a39b9be96e25fcea7faefca6328e1d3b2d3e2b 100644 (file)
@@ -778,7 +778,7 @@ static u32 kaweth_get_link(struct net_device *dev)
        return kaweth->linkstate;
 }
 
-static struct ethtool_ops ops = {
+static const struct ethtool_ops ops = {
        .get_drvinfo    = kaweth_get_drvinfo,
        .get_link       = kaweth_get_link
 };
index 7ae9afe99a4f410c582806f8b28cf1784fc08d94..10873d96b2dacf675e9e523f3158004826689367 100644 (file)
@@ -449,7 +449,7 @@ static void mcs7830_get_regs(struct net_device *net, struct ethtool_regs *regs,
        mcs7830_get_reg(dev, 0, regs->len, data);
 }
 
-static struct ethtool_ops mcs7830_ethtool_ops = {
+static const struct ethtool_ops mcs7830_ethtool_ops = {
        .get_drvinfo            = mcs7830_get_drvinfo,
        .get_regs_len           = mcs7830_get_regs_len,
        .get_regs               = mcs7830_get_regs,
index 7b935b846424e2b3de749697400f18dc726c3007..6fdaba8674b9104af6dcbda8d2132d68b9abc51b 100644 (file)
@@ -1174,7 +1174,7 @@ static void pegasus_set_msglevel(struct net_device *dev, u32 v)
        pegasus->msg_enable = v;
 }
 
-static struct ethtool_ops ops = {
+static const struct ethtool_ops ops = {
        .get_drvinfo = pegasus_get_drvinfo,
        .get_settings = pegasus_get_settings,
        .set_settings = pegasus_set_settings,
index d9f84f22fbc7cc33d242c65a839d172878dc80cf..b091e20ca1679d82544751a5aa39683b69d244ac 100644 (file)
@@ -865,7 +865,7 @@ static int rtl8150_get_settings(struct net_device *netdev, struct ethtool_cmd *e
        return 0;
 }
 
-static struct ethtool_ops ops = {
+static const struct ethtool_ops ops = {
        .get_drvinfo = rtl8150_get_drvinfo,
        .get_settings = rtl8150_get_settings,
        .get_link = ethtool_op_get_link
index 09bd6351f64c1fb7020c764ff11253b04822598c..938fb3530a7a779eee3344f2d4cd0dadfc07bdba 100644 (file)
@@ -625,7 +625,7 @@ static int smsc95xx_ethtool_set_tx_csum(struct net_device *netdev, u32 val)
        return smsc95xx_set_csums(dev);
 }
 
-static struct ethtool_ops smsc95xx_ethtool_ops = {
+static const struct ethtool_ops smsc95xx_ethtool_ops = {
        .get_link       = usbnet_get_link,
        .nway_reset     = usbnet_nway_reset,
        .get_drvinfo    = usbnet_get_drvinfo,
index d166e3385c64e084938150f8b1ef1da70c2ac6e7..24b36f795151bd7a61c91260e95d56830fab29ed 100644 (file)
@@ -854,7 +854,7 @@ void usbnet_set_msglevel (struct net_device *net, u32 level)
 EXPORT_SYMBOL_GPL(usbnet_set_msglevel);
 
 /* drivers may override default ethtool_ops in their bind() routine */
-static struct ethtool_ops usbnet_ethtool_ops = {
+static const struct ethtool_ops usbnet_ethtool_ops = {
        .get_settings           = usbnet_get_settings,
        .set_settings           = usbnet_set_settings,
        .get_link               = usbnet_get_link,
index d1941cdff62b5e4324bff1717959160e5f1ca135..ade5b344f75d73fb5852a0a9b30322576d1ce868 100644 (file)
@@ -129,7 +129,7 @@ static int veth_set_tx_csum(struct net_device *dev, u32 data)
        return 0;
 }
 
-static struct ethtool_ops veth_ethtool_ops = {
+static const struct ethtool_ops veth_ethtool_ops = {
        .get_settings           = veth_get_settings,
        .get_drvinfo            = veth_get_drvinfo,
        .get_link               = ethtool_op_get_link,
index 51e9ce4907f088d1eed6f98db56bc2a9e00013cf..32266fb89c2022204c4b7fd396b4139c53f69f0d 100644 (file)
@@ -798,7 +798,7 @@ static void virtnet_vlan_rx_kill_vid(struct net_device *dev, u16 vid)
                dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
 }
 
-static struct ethtool_ops virtnet_ethtool_ops = {
+static const struct ethtool_ops virtnet_ethtool_ops = {
        .set_tx_csum = virtnet_set_tx_csum,
        .set_sg = ethtool_op_set_sg,
        .set_tso = ethtool_op_set_tso,
index 578c69783589b5d4400fc5cd7eedc93518fe1ccb..d3b69a4b4b5e8d7c52be6702aff6b5acbc0e31f7 100644 (file)
@@ -14,7 +14,7 @@
 #include "defs.h"
 #include "hostcmd.h"
 
-extern struct ethtool_ops lbs_ethtool_ops;
+extern const struct ethtool_ops lbs_ethtool_ops;
 
 #define        MAX_BSSID_PER_CHANNEL           16
 
index b118a35ec605dd36dafbb27968dacefec444a62d..039b555e4d7630336f4ea9750a796566f9255cdf 100644 (file)
@@ -183,7 +183,7 @@ static int lbs_ethtool_set_wol(struct net_device *dev,
        return lbs_host_sleep_cfg(priv, criteria, (struct wol_config *)NULL);
 }
 
-struct ethtool_ops lbs_ethtool_ops = {
+const struct ethtool_ops lbs_ethtool_ops = {
        .get_drvinfo = lbs_ethtool_get_drvinfo,
        .get_eeprom =  lbs_ethtool_get_eeprom,
        .get_eeprom_len = lbs_ethtool_get_eeprom_len,
index 3700c49d76ca7ded68cb3294b13054a4efedb251..baa051d5bfbe0bcd84bd9f28530ac73f6d4863d8 100644 (file)
@@ -51,7 +51,7 @@
 #include <xen/interface/memory.h>
 #include <xen/interface/grant_table.h>
 
-static struct ethtool_ops xennet_ethtool_ops;
+static const struct ethtool_ops xennet_ethtool_ops;
 
 struct netfront_cb {
        struct page *page;
@@ -1627,7 +1627,7 @@ static void backend_changed(struct xenbus_device *dev,
        }
 }
 
-static struct ethtool_ops xennet_ethtool_ops =
+static const struct ethtool_ops xennet_ethtool_ops =
 {
        .set_tx_csum = ethtool_op_set_tx_csum,
        .set_sg = xennet_set_sg,
index 12ee7a35ca5920e2390728fabe2e790b1d29c174..94b161121c2625581b90c1e088066d209ca341eb 100644 (file)
@@ -863,7 +863,7 @@ static void qeth_l2_remove_device(struct ccwgroup_device *cgdev)
        return;
 }
 
-static struct ethtool_ops qeth_l2_ethtool_ops = {
+static const struct ethtool_ops qeth_l2_ethtool_ops = {
        .get_link = ethtool_op_get_link,
        .get_strings = qeth_core_get_strings,
        .get_ethtool_stats = qeth_core_get_ethtool_stats,
@@ -872,7 +872,7 @@ static struct ethtool_ops qeth_l2_ethtool_ops = {
        .get_settings = qeth_core_ethtool_get_settings,
 };
 
-static struct ethtool_ops qeth_l2_osn_ops = {
+static const struct ethtool_ops qeth_l2_osn_ops = {
        .get_strings = qeth_core_get_strings,
        .get_ethtool_stats = qeth_core_get_ethtool_stats,
        .get_stats_count = qeth_core_get_stats_count,
index d9fabe30c0dac15d992a35ce7ae1f94dcf0ff716..115b4a0dae6ea0049f0ca555bc60ca0c3c0e40d5 100644 (file)
@@ -2946,7 +2946,7 @@ static int qeth_l3_ethtool_set_tso(struct net_device *dev, u32 data)
        return 0;
 }
 
-static struct ethtool_ops qeth_l3_ethtool_ops = {
+static const struct ethtool_ops qeth_l3_ethtool_ops = {
        .get_link = ethtool_op_get_link,
        .get_tx_csum = ethtool_op_get_tx_csum,
        .set_tx_csum = ethtool_op_set_tx_hw_csum,
index 7b8aa5edf42f2d55217ef2caaeb1b3a44a4fac74..c165c50c011944d7139831702594ca982f46db34 100644 (file)
@@ -3396,7 +3396,7 @@ static u32 at76_ethtool_get_link(struct net_device *netdev)
        return priv->mac_state == MAC_CONNECTED;
 }
 
-static struct ethtool_ops at76_ethtool_ops = {
+static const struct ethtool_ops at76_ethtool_ops = {
        .get_drvinfo = at76_ethtool_get_drvinfo,
        .get_link = at76_ethtool_get_link,
 };
index 93cab0a489255cc9fa89d96ed02809efce8ace53..42230e62a2227b9bf1297ff575a2c618b98902de 100644 (file)
@@ -170,7 +170,7 @@ static u32 cvm_oct_get_link(struct net_device *dev)
        return ret;
 }
 
-struct ethtool_ops cvm_oct_ethtool_ops = {
+struct const ethtool_ops cvm_oct_ethtool_ops = {
        .get_drvinfo = cvm_oct_get_drvinfo,
        .get_settings = cvm_oct_get_settings,
        .set_settings = cvm_oct_set_settings,
index 6314141e5ef2751aaaae46f3d4da57224a763ca3..b3328aeec2dfcb6ed7400c586b044596442335c9 100644 (file)
@@ -41,6 +41,6 @@
 #include <net/xfrm.h>
 #endif /* CONFIG_XFRM */
 
-extern struct ethtool_ops cvm_oct_ethtool_ops;
+extern const struct ethtool_ops cvm_oct_ethtool_ops;
 int cvm_oct_ioctl(struct net_device *dev, struct ifreq *rq, int cmd);
 int cvm_oct_mdio_setup_device(struct net_device *dev);
index f07aa708d86260ebde8857bcde8b88a20817fa8c..110096a5c52f74c663b548def763dd43b9e4628c 100644 (file)
@@ -782,6 +782,6 @@ struct slic_crash_info {
 #define SIOCSLICSETINTAGG        (SIOCDEVPRIVATE+10)
 #define SIOCSLICTRACEDUMP        (SIOCDEVPRIVATE+11)
 
-extern struct ethtool_ops sxg_nic_ethtool_ops;
+extern const struct ethtool_ops sxg_nic_ethtool_ops;
 #define SXG_COMPLETE_SLOW_SEND_LIMIT   128
 #endif /*  __SXG_DRIVER_H__ */
index ad89cb829b85be2e4df5afcb2d5319a5a0dd4b55..f5a0706478dadf31983e10939ccde89d145fe492 100644 (file)
@@ -300,7 +300,7 @@ static int sxg_nic_get_eeprom(struct net_device *netdev,
        return 0;
 }
 
-struct ethtool_ops sxg_nic_ethtool_ops = {
+const struct ethtool_ops sxg_nic_ethtool_ops = {
        .get_settings = sxg_nic_get_settings,
        .set_settings = sxg_nic_set_settings,
        .get_drvinfo = sxg_nic_get_drvinfo,
index dc3ebd1e68ca8feb5573e7c35f264e584502616b..c665219539170988c1083d6b379dec303b68fb08 100644 (file)
@@ -181,7 +181,7 @@ static void eth_get_drvinfo(struct net_device *net, struct ethtool_drvinfo *p)
  *   - ... probably more ethtool ops
  */
 
-static struct ethtool_ops ops = {
+static const struct ethtool_ops ops = {
        .get_drvinfo = eth_get_drvinfo,
        .get_link = ethtool_op_get_link,
 };