blob: 1e36d57b4830f967370fd5f4b375591e92782a48 [file] [log] [blame]
Shad Ansari2f7f9be2017-06-07 13:34:53 -07001# PCIe Software Queue driver
2# - Software layer on top of low level PCIe driver that adds support
3# for s/w queue and priority
4#
5MOD_NAME = pcie_sw_queue
6
7MOD_DEPS = pcie
8
9ifeq ("$(OS_KERNEL)", "linux")
10MOD_TYPE = linux_lib
11else
12MOD_TYPE = lib
13endif
14
15ifneq ("$(RAW_TRANSPORT_VIA_UDP)", "y")
16 srcs = bcmtr_pcie_sw_queue.c
17endif
18
19USE_LINT = yes
20
21