diff options
author | Stephen Hemminger <shemminger@vyatta.com> | 2009-09-02 12:03:33 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-09-02 12:03:33 +0400 |
commit | 0fc0b732eaa38beb93a6fb62f77c7bd9622c76ec (patch) | |
tree | 2423b134116c16f027ebeae7954c098f27d6e619 /drivers/firewire/net.c | |
parent | daf09de817353f18bb81a23a023d429cfd258e62 (diff) | |
download | linux-0fc0b732eaa38beb93a6fb62f77c7bd9622c76ec.tar.xz |
netdev: drivers should make ethtool_ops const
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>
Diffstat (limited to 'drivers/firewire/net.c')
-rw-r--r-- | drivers/firewire/net.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/firewire/net.c b/drivers/firewire/net.c index d923d1dc458f..84edc8b84c62 100644 --- a/drivers/firewire/net.c +++ b/drivers/firewire/net.c @@ -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, }; |