]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
iavf: move i40evf files to new name
authorJesse Brandeburg <jesse.brandeburg@intel.com>
Sat, 15 Sep 2018 00:37:48 +0000 (17:37 -0700)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Tue, 18 Sep 2018 22:17:53 +0000 (15:17 -0700)
Simply move the i40evf files to the new name, updating the #includes
to track the new names, and updating the Makefile as well.

A future patch will remove the i40e references (after the code
removal patches later in this series).

Signed-off-by: Jesse Brandeburg <jesse.brandeburg@intel.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/iavf/Makefile
drivers/net/ethernet/intel/iavf/iavf.h [moved from drivers/net/ethernet/intel/iavf/i40evf.h with 99% similarity]
drivers/net/ethernet/intel/iavf/iavf_client.c [moved from drivers/net/ethernet/intel/iavf/i40evf_client.c with 99% similarity]
drivers/net/ethernet/intel/iavf/iavf_client.h [moved from drivers/net/ethernet/intel/iavf/i40evf_client.h with 100% similarity]
drivers/net/ethernet/intel/iavf/iavf_ethtool.c [moved from drivers/net/ethernet/intel/iavf/i40evf_ethtool.c with 99% similarity]
drivers/net/ethernet/intel/iavf/iavf_main.c [moved from drivers/net/ethernet/intel/iavf/i40evf_main.c with 99% similarity]
drivers/net/ethernet/intel/iavf/iavf_txrx.c [moved from drivers/net/ethernet/intel/iavf/i40e_txrx.c with 99% similarity]
drivers/net/ethernet/intel/iavf/iavf_txrx.h [moved from drivers/net/ethernet/intel/iavf/i40e_txrx.h with 100% similarity]
drivers/net/ethernet/intel/iavf/iavf_virtchnl.c [moved from drivers/net/ethernet/intel/iavf/i40evf_virtchnl.c with 99% similarity]

index 1b050d9d5f493f023300dac3796c160645dd8a6f..c1e4b91de4b3a871b3affbd03b07be2d2df38c57 100644 (file)
@@ -11,5 +11,5 @@ subdir-ccflags-y += -I$(src)
 
 obj-$(CONFIG_IAVF) += iavf.o
 
-iavf-objs := i40evf_main.o i40evf_ethtool.o i40evf_virtchnl.o \
-             i40e_txrx.o i40e_common.o i40e_adminq.o i40evf_client.o
+iavf-objs := iavf_main.o iavf_ethtool.o iavf_virtchnl.o \
+            iavf_txrx.o i40e_common.o i40e_adminq.o iavf_client.o
similarity index 99%
rename from drivers/net/ethernet/intel/iavf/i40evf.h
rename to drivers/net/ethernet/intel/iavf/iavf.h
index 3be326499b8c672e91efcf31245e04abdb254729..ab1f4f9f1a8fdc8c5a28e51717f4b485e98145cc 100644 (file)
@@ -36,7 +36,7 @@
 
 #include "i40e_type.h"
 #include <linux/avf/virtchnl.h>
-#include "i40e_txrx.h"
+#include "iavf_txrx.h"
 
 #define DEFAULT_DEBUG_LEVEL_SHIFT 3
 #define PFX "iavf: "
similarity index 99%
rename from drivers/net/ethernet/intel/iavf/i40evf_client.c
rename to drivers/net/ethernet/intel/iavf/iavf_client.c
index 4c3e9b5d547b434578114c1a8a3d636fa19fedcf..500c090678221e4fce121f37c735eec88618239f 100644 (file)
@@ -4,9 +4,9 @@
 #include <linux/list.h>
 #include <linux/errno.h>
 
-#include "i40evf.h"
+#include "iavf.h"
 #include "i40e_prototype.h"
-#include "i40evf_client.h"
+#include "iavf_client.h"
 
 static
 const char iavf_client_interface_version_str[] = IAVF_CLIENT_VERSION_STR;
similarity index 99%
rename from drivers/net/ethernet/intel/iavf/i40evf_ethtool.c
rename to drivers/net/ethernet/intel/iavf/iavf_ethtool.c
index b8b2db7ee8b8097f7592bd3b4ae552897d5bcfde..57142bd5dc094d7d336583ee64f4ca77d35576db 100644 (file)
@@ -2,7 +2,7 @@
 /* Copyright(c) 2013 - 2018 Intel Corporation. */
 
 /* ethtool support for iavf */
-#include "i40evf.h"
+#include "iavf.h"
 
 #include <linux/uaccess.h>
 
similarity index 99%
rename from drivers/net/ethernet/intel/iavf/i40evf_main.c
rename to drivers/net/ethernet/intel/iavf/iavf_main.c
index 46bdc59b9bed31245854f1d737a72e6bcc8d13df..260d0150ce5dcce25e0042d8931d0735abca9c9f 100644 (file)
@@ -1,9 +1,9 @@
 // SPDX-License-Identifier: GPL-2.0
 /* Copyright(c) 2013 - 2018 Intel Corporation. */
 
-#include "i40evf.h"
+#include "iavf.h"
 #include "i40e_prototype.h"
-#include "i40evf_client.h"
+#include "iavf_client.h"
 /* All iavf tracepoints are defined by the include below, which must
  * be included exactly once across the whole kernel with
  * CREATE_TRACE_POINTS defined
similarity index 99%
rename from drivers/net/ethernet/intel/iavf/i40e_txrx.c
rename to drivers/net/ethernet/intel/iavf/iavf_txrx.c
index 6d8f848824ad87150f5a25888d97ee461e88b5a3..104f278b38d83bb57f9205754141a242c1593d0f 100644 (file)
@@ -4,7 +4,7 @@
 #include <linux/prefetch.h>
 #include <net/busy_poll.h>
 
-#include "i40evf.h"
+#include "iavf.h"
 #include "i40e_trace.h"
 #include "i40e_prototype.h"
 
similarity index 99%
rename from drivers/net/ethernet/intel/iavf/i40evf_virtchnl.c
rename to drivers/net/ethernet/intel/iavf/iavf_virtchnl.c
index a1fa7a22c19a187c85ad36a74c90fc0c34f0f4d5..ebfef5fe346c169e8ae2c3e783940ba9dc47ad7d 100644 (file)
@@ -1,9 +1,9 @@
 // SPDX-License-Identifier: GPL-2.0
 /* Copyright(c) 2013 - 2018 Intel Corporation. */
 
-#include "i40evf.h"
+#include "iavf.h"
 #include "i40e_prototype.h"
-#include "i40evf_client.h"
+#include "iavf_client.h"
 
 /* busy wait delay in msec */
 #define IAVF_BUSY_WAIT_DELAY 10