net/enic: put Tx and Rx functions into same file
authorJohn Daley <johndale@cisco.com>
Fri, 3 Jun 2016 00:22:48 +0000 (17:22 -0700)
committerBruce Richardson <bruce.richardson@intel.com>
Wed, 15 Jun 2016 15:13:56 +0000 (17:13 +0200)
commit606adbd53a6469ca97556c558d55fd0af818b210
tree91e4ba5e083aa6a99ee897825b38cfb9be001369
parentc44d9f01adf3477a80ac93746ffcb16fcf86a27b
net/enic: put Tx and Rx functions into same file

The Tx functions were in enic_ethdev.c and enic_main.c - files in which
they did not logically belong.  To make things consistent with most
other drivers, we therefore extract them and place them with the equivalent
Rx functions into a file called enic_rxtx.c.

Signed-off-by: John Daley <johndale@cisco.com>
drivers/net/enic/Makefile
drivers/net/enic/enic.h
drivers/net/enic/enic_ethdev.c
drivers/net/enic/enic_main.c
drivers/net/enic/enic_rx.c [deleted file]
drivers/net/enic/enic_rxtx.c [new file with mode: 0644]