diff options
author | Frank Blaschka <frank.blaschka@de.ibm.com> | 2009-01-09 03:44:00 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-01-11 00:05:16 -0800 |
commit | 3d58cefd823e47209ffcac9cada0a618771da1a4 (patch) | |
tree | b73604e32ff2d83103a64e2cca4bfee96271c51b /drivers/s390/net/qeth_l2_main.c | |
parent | c224969e636ea027e7ce474b48e84922e62ca1d6 (diff) | |
download | op-kernel-dev-3d58cefd823e47209ffcac9cada0a618771da1a4.zip op-kernel-dev-3d58cefd823e47209ffcac9cada0a618771da1a4.tar.gz |
qeth: fix usage of netdev_ops
Have separate netdev_ops for OSA and HiperSocket/TR.
Signed-off-by: Frank Blaschka <frank.blaschka@de.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/s390/net/qeth_l2_main.c')
-rw-r--r-- | drivers/s390/net/qeth_l2_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/net/qeth_l2_main.c b/drivers/s390/net/qeth_l2_main.c index c4f1b04..07ab8a5 100644 --- a/drivers/s390/net/qeth_l2_main.c +++ b/drivers/s390/net/qeth_l2_main.c @@ -916,7 +916,7 @@ static struct ethtool_ops qeth_l2_osn_ops = { .get_drvinfo = qeth_core_get_drvinfo, }; -static struct net_device_ops qeth_l2_netdev_ops = { +static const struct net_device_ops qeth_l2_netdev_ops = { .ndo_open = qeth_l2_open, .ndo_stop = qeth_l2_stop, .ndo_get_stats = qeth_get_stats, |