mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-08-31 14:13:39 +00:00

Add a network device with netdev features enabled. Some features are enabled based on the capabilities advertised by the firmware. Add the skeleton of minimal netdev operations. Additionally, initialize the parameters for rings (TX/RX/Completion). Signed-off-by: Vikas Gupta <vikas.gupta@broadcom.com> Reviewed-by: Bhargava Chenna Marreddy <bhargava.marreddy@broadcom.com> Reviewed-by: Rajashekar Hudumula <rajashekar.hudumula@broadcom.com> Link: https://patch.msgid.link/20250701143511.280702-11-vikas.gupta@broadcom.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
13 lines
242 B
Makefile
13 lines
242 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
obj-$(CONFIG_BNGE) += bng_en.o
|
|
|
|
bng_en-y := bnge_core.o \
|
|
bnge_devlink.o \
|
|
bnge_hwrm.o \
|
|
bnge_hwrm_lib.o \
|
|
bnge_rmem.o \
|
|
bnge_resc.o \
|
|
bnge_netdev.o \
|
|
bnge_ethtool.o
|