mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Add driver framework and device setup and initialization for Octeon PCI Endpoint NIC VF. Add implementation to load module, initialize, register network device, cleanup and unload module. Signed-off-by: Shinas Rasheed <srasheed@marvell.com> Signed-off-by: David S. Miller <davem@davemloft.net>
17 lines
446 B
Makefile
17 lines
446 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for the Marvell device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_MVMDIO) += mvmdio.o
|
|
obj-$(CONFIG_MV643XX_ETH) += mv643xx_eth.o
|
|
obj-$(CONFIG_MVNETA_BM) += mvneta_bm.o
|
|
obj-$(CONFIG_MVNETA) += mvneta.o
|
|
obj-$(CONFIG_MVPP2) += mvpp2/
|
|
obj-$(CONFIG_PXA168_ETH) += pxa168_eth.o
|
|
obj-$(CONFIG_SKGE) += skge.o
|
|
obj-$(CONFIG_SKY2) += sky2.o
|
|
obj-y += octeon_ep/
|
|
obj-y += octeon_ep_vf/
|
|
obj-y += octeontx2/
|
|
obj-y += prestera/
|