diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2008-07-15 11:45:36 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2008-07-15 11:47:04 -0300 |
commit | e7b8606cffd39770e94b23993ada800be222ee8f (patch) | |
tree | c68d002d8ded16063d02959f207226740179dfaf /python-ethtool/ethtool.c | |
parent | 824f72f88ead0a623ec844b65e58defb3f4d1231 (diff) | |
download | python-ethtool-e7b8606cffd39770e94b23993ada800be222ee8f.tar.gz python-ethtool-e7b8606cffd39770e94b23993ada800be222ee8f.tar.xz python-ethtool-e7b8606cffd39770e94b23993ada800be222ee8f.zip |
ethtool: remove unused variables from set_tso
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'python-ethtool/ethtool.c')
-rw-r--r-- | python-ethtool/ethtool.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/python-ethtool/ethtool.c b/python-ethtool/ethtool.c index 6ce5208..ba8eaa3 100644 --- a/python-ethtool/ethtool.c +++ b/python-ethtool/ethtool.c @@ -487,9 +487,6 @@ static PyObject *get_tso(PyObject *self __unused, PyObject *args) static PyObject *set_tso(PyObject *self __unused, PyObject *args) { - int pid, policy, priority; - struct ethtool_value param; - if (dev_set_int_value(ETHTOOL_STSO, args) < 0) return NULL; |