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

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
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
@@ -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: "
+2 −2
Original line number Diff line number Diff line
@@ -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;
+1 −1
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
/* Copyright(c) 2013 - 2018 Intel Corporation. */

/* ethtool support for iavf */
#include "i40evf.h"
#include "iavf.h"

#include <linux/uaccess.h>

Loading