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 <narayanr@nvidia.com>
Reviewed-on: https://git-master.nvidia.com/r/2113713
Reviewed-by: Rakesh Goyal <rgoyal@nvidia.com>
GVS: Gerrit_Virtual_Submit
Reviewed-by: Mohit Dhingra <mdhingra@nvidia.com>
Reviewed-by: Bitan Biswas <bbiswas@nvidia.com>
Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com>
Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
This commit is contained in:
Narayan Reddy
2019-05-07 16:51:57 +05:30
committed by Revanth Kumar Uppala
parent 79e4abea9c
commit 731d296d1c

View File

@@ -12,7 +12,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
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