mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

This adds the backbone required for the various HW initalizations which are necessary for the iSCSI driver (qedi) for QLogic FastLinQ 4xxxx line of adapters - FW notification, resource initializations, etc. Signed-off-by: Arun Easi <arun.easi@cavium.com> Signed-off-by: Yuval Mintz <yuval.mintz@cavium.com> Reviewed-by: Johannes Thumshirn <jthumshirn@suse.de> Reviewed-by: Hannes Reinecke <hare@suse.de> Signed-off-by: David S. Miller <davem@davemloft.net>
9 lines
374 B
Makefile
9 lines
374 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-$(CONFIG_QED_SRIOV) += qed_sriov.o qed_vf.o
|
|
qed-$(CONFIG_QED_LL2) += qed_ll2.o
|
|
qed-$(CONFIG_QED_RDMA) += qed_roce.o
|
|
qed-$(CONFIG_QED_ISCSI) += qed_iscsi.o
|