mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-22 09:35:49 +07:00
91c1953de3
Use zlib deflate to compress firmware dump. Collect and compress as much firmware dump as possible into a 32 MB buffer. Signed-off-by: Rahul Lakkireddy <rahul.lakkireddy@chelsio.com> Signed-off-by: Vishal Kulkarni <vishal@chelsio.com> Signed-off-by: Ganesh Goudar <ganeshgr@chelsio.com> Signed-off-by: David S. Miller <davem@davemloft.net>
16 lines
510 B
Makefile
16 lines
510 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Chelsio T4 driver
|
|
#
|
|
|
|
obj-$(CONFIG_CHELSIO_T4) += cxgb4.o
|
|
|
|
cxgb4-objs := cxgb4_main.o l2t.o smt.o t4_hw.o sge.o clip_tbl.o cxgb4_ethtool.o \
|
|
cxgb4_uld.o sched.o cxgb4_filter.o cxgb4_tc_u32.o \
|
|
cxgb4_ptp.o cxgb4_tc_flower.o cxgb4_cudbg.o \
|
|
cudbg_common.o cudbg_lib.o
|
|
cxgb4-$(CONFIG_CHELSIO_T4_DCB) += cxgb4_dcb.o
|
|
cxgb4-$(CONFIG_CHELSIO_T4_FCOE) += cxgb4_fcoe.o
|
|
cxgb4-$(CONFIG_DEBUG_FS) += cxgb4_debugfs.o
|
|
cxgb4-$(CONFIG_ZLIB_DEFLATE) += cudbg_zlib.o
|