mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-26 12:34:41 +08:00
b8b9d81b36
Add common library module(libcxgb.ko) for Chelsio drivers to remove duplicate code. Code for iSCSI DDP Page Pod Manager is moved from cxgb4.ko to libcxgb.ko. Earlier only cxgbit.ko was using this code, now cxgb3i and cxgb4i will also use common Page Pod manager code. In future this module will have common connection management and hardware specific code that can be shared by multiple Chelsio drivers. Signed-off-by: Varun Prakash <varun@chelsio.com> Reviewed-by: Steve Wise <swise@opengridcomputing.com> Signed-off-by: David S. Miller <davem@davemloft.net>
10 lines
237 B
Makefile
10 lines
237 B
Makefile
#
|
|
# Makefile for the Chelsio network device drivers.
|
|
#
|
|
|
|
obj-$(CONFIG_CHELSIO_T1) += cxgb/
|
|
obj-$(CONFIG_CHELSIO_T3) += cxgb3/
|
|
obj-$(CONFIG_CHELSIO_T4) += cxgb4/
|
|
obj-$(CONFIG_CHELSIO_T4VF) += cxgb4vf/
|
|
obj-$(CONFIG_CHELSIO_LIB) += libcxgb/
|