Commit bdaf98f6 authored by Alexander Lobakin's avatar Alexander Lobakin Committed by David S. Miller
Browse files

qed: reformat Makefile



List one entry per line and sort them alphabetically to simplify the
addition of the new ones.

Signed-off-by: default avatarAlexander Lobakin <alobakin@marvell.com>
Signed-off-by: default avatarIgor Russkikh <irusskikh@marvell.com>
Signed-off-by: default avatarMichal Kalderon <michal.kalderon@marvell.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2cf2f4f5
Loading
Loading
Loading
Loading
+29 −7
Original line number Diff line number Diff line
@@ -3,12 +3,34 @@

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-y :=			\
	qed_cxt.o		\
	qed_dcbx.o		\
	qed_debug.o		\
	qed_dev.o		\
	qed_hw.o		\
	qed_init_fw_funcs.o	\
	qed_init_ops.o		\
	qed_int.o		\
	qed_l2.o		\
	qed_main.o		\
	qed_mcp.o		\
	qed_mng_tlv.o		\
	qed_ptp.o		\
	qed_selftest.o		\
	qed_sp_commands.o	\
	qed_spq.o

qed-$(CONFIG_QED_FCOE) += qed_fcoe.o
qed-$(CONFIG_QED_ISCSI) += qed_iscsi.o
qed-$(CONFIG_QED_LL2) += qed_ll2.o
qed-$(CONFIG_QED_OOO) += qed_ooo.o

qed-$(CONFIG_QED_RDMA) +=	\
	qed_iwarp.o		\
	qed_rdma.o		\
	qed_roce.o

qed-$(CONFIG_QED_SRIOV) +=	\
	qed_sriov.o		\
	qed_vf.o