From 731d296d1c4e0ed5f898a70a29a02cf757a0327d Mon Sep 17 00:00:00 2001 From: Narayan Reddy Date: Tue, 7 May 2019 16:51:57 +0530 Subject: [PATCH] nvethernet: Fix OSI core and DMA directories OSI folder structure has been divided into CORE and DMA directories, so modifying the makefile accordingly. Bug 200517622 Change-Id: I629b98b39e0287564a3ac0675a6479c1a1df6f30 Signed-off-by: Narayan Reddy Reviewed-on: https://git-master.nvidia.com/r/2113713 Reviewed-by: Rakesh Goyal GVS: Gerrit_Virtual_Submit Reviewed-by: Mohit Dhingra Reviewed-by: Bitan Biswas Reviewed-by: mobile promotions Tested-by: mobile promotions --- drivers/net/ethernet/nvidia/nvethernet/Makefile | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/drivers/net/ethernet/nvidia/nvethernet/Makefile b/drivers/net/ethernet/nvidia/nvethernet/Makefile index 058b507c..f416350e 100644 --- a/drivers/net/ethernet/nvidia/nvethernet/Makefile +++ b/drivers/net/ethernet/nvidia/nvethernet/Makefile @@ -12,7 +12,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . -OSI := ../../../../../../nvethernetrm/osi +OSI_CORE := ../../../../../../nvethernetrm/osi/core +OSI_DMA := ../../../../../../nvethernetrm/osi/dma obj-$(CONFIG_NVETHERNET) += nvethernet.o @@ -21,9 +22,9 @@ nvethernet-objs:= ether_linux.o \ ethtool.o \ sysfs.o \ ioctl.o \ - $(OSI)/osi_core.o \ - $(OSI)/osi_common.o \ - $(OSI)/osi_dma.o \ - $(OSI)/osi_dma_txrx.o \ - $(OSI)/eqos_core.o \ - $(OSI)/eqos_dma.o + $(OSI_CORE)/osi_core.o \ + $(OSI_CORE)/osi_common.o \ + $(OSI_DMA)/osi_dma.o \ + $(OSI_DMA)/osi_dma_txrx.o \ + $(OSI_CORE)/eqos_core.o \ + $(OSI_DMA)/eqos_dma.o