Message ID | 20241120105625.22508-17-Frank.Sae@motor-comm.com (mailing list archive) |
---|---|
State | New |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | net:yt6801: Add Motorcomm yt6801 PCIe driver | expand |
diff --git a/drivers/net/ethernet/motorcomm/yt6801/Makefile b/drivers/net/ethernet/motorcomm/yt6801/Makefile new file mode 100644 index 000000000..72e0acd65 --- /dev/null +++ b/drivers/net/ethernet/motorcomm/yt6801/Makefile @@ -0,0 +1,9 @@ +# SPDX-License-Identifier: GPL-2.0 +# Copyright (c) 2021 Motor-comm Corporation. +# +# Makefile for the Motorcomm(R) 6801 PCI-Express ethernet driver +# + +obj-$(CONFIG_YT6801) += yt6801.o +yt6801-objs := yt6801_desc.o yt6801_ethtool.o yt6801_hw.o \ + yt6801_net.o yt6801_pci.o
Add a Makefile in the motorcomm folder to build yt6801 driver. Signed-off-by: Frank Sae <Frank.Sae@motor-comm.com> --- drivers/net/ethernet/motorcomm/yt6801/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 drivers/net/ethernet/motorcomm/yt6801/Makefile