mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-24 18:19:29 +07:00
b71b9afdf6
This patch places common iWARP / RoCE code in qed_rdma and roce specific code in qed_roce There is one new function ( qed_roce_setup ) added, the rest of the patch removes content from the files and removes some static definitions. Signed-off-by: Michal Kalderon <Michal.Kalderon@cavium.com> Signed-off-by: Yuval Mintz <Yuval.Mintz@cavium.com> Signed-off-by: David S. Miller <davem@davemloft.net>
11 lines
442 B
Makefile
11 lines
442 B
Makefile
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-$(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-$(CONFIG_QED_ISCSI) += qed_iscsi.o qed_ooo.o
|
|
qed-$(CONFIG_QED_FCOE) += qed_fcoe.o
|