]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commit
net: ovs: fix return type of ndo_start_xmit function
authorYueHaibing <yuehaibing@huawei.com>
Wed, 26 Sep 2018 09:15:38 +0000 (17:15 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 28 Sep 2018 17:25:11 +0000 (10:25 -0700)
commiteddf11e18dff0e8671e06ce54e64cfc843303ab9
tree2d9a65f6b442bc2f69d7193e2daa1afe50066d69
parent31df0cffa974df05a7036d1e5e5dbf0733c7f5ff
net: ovs: fix return type of ndo_start_xmit function

The method ndo_start_xmit() is defined as returning an 'netdev_tx_t',
which is a typedef for an enum type, so make sure the implementation in
this driver has returns 'netdev_tx_t' value, and change the function
return type to netdev_tx_t.

Found by coccinelle.

Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/openvswitch/vport-internal_dev.c