mirror of
https://github.com/torvalds/linux.git
synced 2026-05-03 22:12:32 -04:00
Context info was introduced in 22000, and was significantly changed in ax210. The new version of context info was called 'gen3', probably because in 22000, the gen2 transport was added. But this name is just wrong: - if 'gen' enumerates transports, there was not a gen3 transport, just a few modifications to gen1/2 transports needed for ax210. - if 'gen' enumerates devices, then we can just use the device names. Also, context info will soon become a lib, agnostic of the transport generations. Simply replace 'gen3' with 'v2'. Reviewed-by: Johannes Berg <johannes.berg@intel.com> Signed-off-by: Miri Korenblit <miriam.rachel.korenblit@intel.com> Link: https://patch.msgid.link/20250511195137.a580bd8d4f74.Ie413a02233f1a5ad538e13071c09760b9d97be3b@changeid
54 lines
1.7 KiB
Makefile
54 lines
1.7 KiB
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
# common
|
|
obj-$(CONFIG_IWLWIFI) += iwlwifi.o
|
|
iwlwifi-objs += iwl-io.o
|
|
iwlwifi-objs += iwl-drv.o
|
|
iwlwifi-objs += iwl-debug.o
|
|
iwlwifi-objs += iwl-nvm-utils.o
|
|
iwlwifi-objs += iwl-utils.o
|
|
iwlwifi-objs += iwl-phy-db.o iwl-nvm-parse.o
|
|
iwlwifi-objs += pcie/drv.o pcie/rx.o pcie/tx.o pcie/trans.o
|
|
iwlwifi-objs += pcie/ctxt-info.o pcie/ctxt-info-v2.o
|
|
iwlwifi-objs += pcie/trans-gen2.o pcie/tx-gen2.o
|
|
|
|
CFLAGS_pcie/drv.o += -Wno-override-init
|
|
|
|
# combined MAC/RF configurations
|
|
iwlwifi-$(CONFIG_IWLDVM) += cfg/1000.o cfg/2000.o
|
|
iwlwifi-$(CONFIG_IWLDVM) += cfg/5000.o cfg/6000.o
|
|
iwlwifi-$(CONFIG_IWLMVM) += cfg/7000.o cfg/8000.o
|
|
# MAC configurations
|
|
iwlwifi-$(CONFIG_IWLMVM) += cfg/9000.o cfg/22000.o
|
|
iwlwifi-$(CONFIG_IWLMVM) += cfg/ax210.o
|
|
iwlwifi-$(CONFIG_IWLMLD) += cfg/bz.o cfg/sc.o cfg/dr.o
|
|
# RF configurations
|
|
iwlwifi-$(CONFIG_IWLMVM) += cfg/rf-jf.o cfg/rf-hr.o cfg/rf-gf.o
|
|
iwlwifi-$(CONFIG_IWLMLD) += cfg/rf-fm.o cfg/rf-wh.o cfg/rf-pe.o
|
|
|
|
iwlwifi-objs += iwl-dbg-tlv.o
|
|
iwlwifi-objs += iwl-trans.o
|
|
|
|
iwlwifi-objs += fw/img.o fw/notif-wait.o fw/rs.o
|
|
iwlwifi-objs += fw/dbg.o fw/pnvm.o fw/dump.o
|
|
iwlwifi-objs += fw/regulatory.o
|
|
iwlwifi-$(CONFIG_IWLMVM) += fw/paging.o fw/smem.o fw/init.o
|
|
iwlwifi-$(CONFIG_IWLMLD) += fw/smem.o fw/init.o
|
|
iwlwifi-$(CONFIG_ACPI) += fw/acpi.o
|
|
iwlwifi-$(CONFIG_EFI) += fw/uefi.o
|
|
iwlwifi-$(CONFIG_IWLWIFI_DEBUGFS) += fw/debugfs.o
|
|
|
|
iwlwifi-objs += $(iwlwifi-m)
|
|
|
|
iwlwifi-$(CONFIG_IWLWIFI_DEVICE_TRACING) += iwl-devtrace.o
|
|
|
|
ccflags-y += -I$(src)
|
|
|
|
obj-$(CONFIG_IWLDVM) += dvm/
|
|
obj-$(CONFIG_IWLMVM) += mvm/
|
|
obj-$(CONFIG_IWLMEI) += mei/
|
|
obj-$(CONFIG_IWLMLD) += mld/
|
|
|
|
obj-$(CONFIG_IWLWIFI_KUNIT_TESTS) += tests/
|
|
|
|
CFLAGS_iwl-devtrace.o := -I$(src)
|