Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions drivers/net/ethernet/wangxun/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ config LIBWX
config NGBE
tristate "Wangxun(R) GbE PCI Express adapters support"
depends on PCI
select LIBWX
select PHYLIB
imply PTP_1588_CLOCK
help
This driver supports Wangxun(R) GbE PCI Express family of
adapters.
Expand Down
22 changes: 21 additions & 1 deletion drivers/net/ethernet/wangxun/ngbe/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,24 @@

obj-$(CONFIG_NGBE) += ngbe.o

ngbe-objs := ngbe_main.o ngbe_hw.o ngbe_mdio.o ngbe_ethtool.o
ngbe-objs := ngbe_main.o \
ngbe_ethtool.o \
ngbe_lib.o \
ngbe_mbx.o \
ngbe_sriov.o \
ngbe_param.o \
ngbe_phy.o \
ngbe_hw.o \
ngbe_pcierr.o \
ngbe_xsk.o \
ngbe_ptp.o \
ngbe_sysfs.o

ngbe-${CONFIG_DEBUG_FS} += ngbe_debugfs.o

KERNELDIR ?= /lib/modules/$(shell uname -r)/build
all:
$(MAKE) -C $(KERNELDIR) M=$(PWD) modules
clean:
$(MAKE) -C $(KERNELDIR) M=$(PWD) clean
rm -rf *.${MANSECTION}.gz *.ko
Loading
Loading