commit | 2468b3e4aa7b2a45443c43fced850965ee8118bd | [log] [tgz] |
---|---|---|
author | Luc Van Oostenryck <luc.vanoostenryck@gmail.com> | Tue Apr 24 15:18:39 2018 +0200 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Wed Apr 25 14:56:12 2018 +0200 |
tree | 5c0ce7beff7392349bafca303ddeba1c7bd7102f | |
parent | 700ad5531b9e90d5442867b389c92aa599e183e4 [diff] |
tty: n_gsm: fix gsm_mux_net_start_xmit()'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> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>