mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-27 12:32:50 +00:00
Set the actual copyright holder and years in all qed source files. Signed-off-by: Alexander Lobakin <alobakin@marvell.com> Signed-off-by: Igor Russkikh <irusskikh@marvell.com> Signed-off-by: David S. Miller <davem@davemloft.net>
15 lines
605 B
Makefile
15 lines
605 B
Makefile
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
|
|
# Copyright (c) 2019-2020 Marvell International Ltd.
|
|
|
|
obj-$(CONFIG_QED) := qed.o
|
|
|
|
qed-y := qed_cxt.o qed_dev.o qed_hw.o qed_init_fw_funcs.o qed_init_ops.o \
|
|
qed_int.o qed_main.o qed_mcp.o qed_sp_commands.o qed_spq.o qed_l2.o \
|
|
qed_selftest.o qed_dcbx.o qed_debug.o qed_ptp.o qed_mng_tlv.o
|
|
qed-$(CONFIG_QED_SRIOV) += qed_sriov.o qed_vf.o
|
|
qed-$(CONFIG_QED_LL2) += qed_ll2.o
|
|
qed-$(CONFIG_QED_RDMA) += qed_roce.o qed_rdma.o qed_iwarp.o
|
|
qed-$(CONFIG_QED_ISCSI) += qed_iscsi.o
|
|
qed-$(CONFIG_QED_FCOE) += qed_fcoe.o
|
|
qed-$(CONFIG_QED_OOO) += qed_ooo.o
|