forked from Minki/linux
12a889c057
Create two new files fw_qos.h and fw_qos.c in mlx4_core module. It gathers all relevant QoS firmware related commands etc, thus improving encapsulation of the mlx4_core module. For now it contains the QoS existing commands: mlx4_SET_PORT_SCHEDULER and mlx4_SET_PORT_PRIO2TC. Signed-off-by: Ido Shamay <idos@mellanox.com> Signed-off-by: Or Gerlitz <ogerlitz@mellanox.com> Signed-off-by: David S. Miller <davem@davemloft.net>
12 lines
432 B
Makefile
12 lines
432 B
Makefile
obj-$(CONFIG_MLX4_CORE) += mlx4_core.o
|
|
|
|
mlx4_core-y := alloc.o catas.o cmd.o cq.o eq.o fw.o fw_qos.o icm.o intf.o \
|
|
main.o mcg.o mr.o pd.o port.o profile.o qp.o reset.o sense.o \
|
|
srq.o resource_tracker.o
|
|
|
|
obj-$(CONFIG_MLX4_EN) += mlx4_en.o
|
|
|
|
mlx4_en-y := en_main.o en_tx.o en_rx.o en_ethtool.o en_port.o en_cq.o \
|
|
en_resources.o en_netdev.o en_selftest.o en_clock.o
|
|
mlx4_en-$(CONFIG_MLX4_EN_DCB) += en_dcb_nl.o
|