commit | cf12aab67a2fb29342d833a6333a322aaccca2d0 | [log] [tgz] |
---|---|---|
author | Luc Van Oostenryck <luc.vanoostenryck@gmail.com> | Tue Apr 24 15:16:48 2018 +0200 |
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | Fri May 11 12:18:35 2018 -0700 |
tree | f6521a74b35daa5f2e91ef9fe7a9a564f31cdd63 | |
parent | bbb2707623f3ccc48695da2433f06d7c38193451 [diff] |
ixgbevf: fix ixgbevf_xmit_frame()'s return type The method ndo_start_xmit() is defined as returning an 'netdev_tx_t', which is a typedef for an enum type, but the implementation in this driver returns an 'int'. Fix this by returning 'netdev_tx_t' in this driver too. Signed-off-by: Luc Van Oostenryck <luc.vanoostenryck@gmail.com> Tested-by: Andrew Bowers <andrewx.bowers@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>