mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-20 15:38:01 +07:00
8e22f04082
This patch adds basic template for Marvell OcteonTX2's CGX ethernet interface driver. Just the probe. RVU AF driver will use APIs exported by this driver for various things like PF to physical interface mapping, loopback mode, interface stats etc. Hence marged both drivers into a single module. Signed-off-by: Sunil Goutham <sgoutham@marvell.com> Signed-off-by: David S. Miller <davem@davemloft.net>
11 lines
253 B
Makefile
11 lines
253 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for Marvell's OcteonTX2 RVU Admin Function driver
|
|
#
|
|
|
|
obj-$(CONFIG_OCTEONTX2_MBOX) += octeontx2_mbox.o
|
|
obj-$(CONFIG_OCTEONTX2_AF) += octeontx2_af.o
|
|
|
|
octeontx2_mbox-y := mbox.o
|
|
octeontx2_af-y := cgx.o rvu.o
|