Commit 5ec8b7d1 authored by Jesse Brandeburg's avatar Jesse Brandeburg Committed by Jeff Kirsher

iavf: move i40evf files to new name

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: default avatarJesse Brandeburg <jesse.brandeburg@intel.com>
Tested-by: default avatarAndrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 0b6591e6
...@@ -11,5 +11,5 @@ subdir-ccflags-y += -I$(src) ...@@ -11,5 +11,5 @@ subdir-ccflags-y += -I$(src)
obj-$(CONFIG_IAVF) += iavf.o obj-$(CONFIG_IAVF) += iavf.o
iavf-objs := i40evf_main.o i40evf_ethtool.o i40evf_virtchnl.o \ iavf-objs := iavf_main.o iavf_ethtool.o iavf_virtchnl.o \
i40e_txrx.o i40e_common.o i40e_adminq.o i40evf_client.o iavf_txrx.o i40e_common.o i40e_adminq.o iavf_client.o
...@@ -36,7 +36,7 @@ ...@@ -36,7 +36,7 @@
#include "i40e_type.h" #include "i40e_type.h"
#include <linux/avf/virtchnl.h> #include <linux/avf/virtchnl.h>
#include "i40e_txrx.h" #include "iavf_txrx.h"
#define DEFAULT_DEBUG_LEVEL_SHIFT 3 #define DEFAULT_DEBUG_LEVEL_SHIFT 3
#define PFX "iavf: " #define PFX "iavf: "
......
...@@ -4,9 +4,9 @@ ...@@ -4,9 +4,9 @@
#include <linux/list.h> #include <linux/list.h>
#include <linux/errno.h> #include <linux/errno.h>
#include "i40evf.h" #include "iavf.h"
#include "i40e_prototype.h" #include "i40e_prototype.h"
#include "i40evf_client.h" #include "iavf_client.h"
static static
const char iavf_client_interface_version_str[] = IAVF_CLIENT_VERSION_STR; const char iavf_client_interface_version_str[] = IAVF_CLIENT_VERSION_STR;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
/* Copyright(c) 2013 - 2018 Intel Corporation. */ /* Copyright(c) 2013 - 2018 Intel Corporation. */
/* ethtool support for iavf */ /* ethtool support for iavf */
#include "i40evf.h" #include "iavf.h"
#include <linux/uaccess.h> #include <linux/uaccess.h>
......
// SPDX-License-Identifier: GPL-2.0 // SPDX-License-Identifier: GPL-2.0
/* Copyright(c) 2013 - 2018 Intel Corporation. */ /* Copyright(c) 2013 - 2018 Intel Corporation. */
#include "i40evf.h" #include "iavf.h"
#include "i40e_prototype.h" #include "i40e_prototype.h"
#include "i40evf_client.h" #include "iavf_client.h"
/* All iavf tracepoints are defined by the include below, which must /* All iavf tracepoints are defined by the include below, which must
* be included exactly once across the whole kernel with * be included exactly once across the whole kernel with
* CREATE_TRACE_POINTS defined * CREATE_TRACE_POINTS defined
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
#include <linux/prefetch.h> #include <linux/prefetch.h>
#include <net/busy_poll.h> #include <net/busy_poll.h>
#include "i40evf.h" #include "iavf.h"
#include "i40e_trace.h" #include "i40e_trace.h"
#include "i40e_prototype.h" #include "i40e_prototype.h"
......
// SPDX-License-Identifier: GPL-2.0 // SPDX-License-Identifier: GPL-2.0
/* Copyright(c) 2013 - 2018 Intel Corporation. */ /* Copyright(c) 2013 - 2018 Intel Corporation. */
#include "i40evf.h" #include "iavf.h"
#include "i40e_prototype.h" #include "i40e_prototype.h"
#include "i40evf_client.h" #include "iavf_client.h"
/* busy wait delay in msec */ /* busy wait delay in msec */
#define IAVF_BUSY_WAIT_DELAY 10 #define IAVF_BUSY_WAIT_DELAY 10
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment