Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge branch 'net-ipa-move-configuration-data-files'

Alex Elder says:

====================
net: ipa: move configuration data files

This series moves the "ipa_data-vX.Y.c" files into a subdirectory.
The first patch adds a Makefile variable containing the list of
supported IPA versions, and uses it to simplify the way these files
are specified.
====================

Link: https://lore.kernel.org/r/20220719150827.295248-1-elder@linaro.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

+7 -3
+7 -3
drivers/net/ipa/Makefile
··· 1 + # SPDX-License-Identifier: GPL-2.0 2 + # 3 + # Makefile for the Qualcomm IPA driver. 4 + 5 + IPA_VERSIONS := 3.1 3.5.1 4.2 4.5 4.9 4.11 6 + 1 7 obj-$(CONFIG_QCOM_IPA) += ipa.o 2 8 3 9 ipa-y := ipa_main.o ipa_power.o ipa_reg.o ipa_mem.o \ ··· 13 7 ipa_resource.o ipa_qmi.o ipa_qmi_msg.o \ 14 8 ipa_sysfs.o 15 9 16 - ipa-y += ipa_data-v3.1.o ipa_data-v3.5.1.o \ 17 - ipa_data-v4.2.o ipa_data-v4.5.o \ 18 - ipa_data-v4.9.o ipa_data-v4.11.o 10 + ipa-y += $(IPA_VERSIONS:%=data/ipa_data-v%.o)
drivers/net/ipa/ipa_data-v3.1.c drivers/net/ipa/data/ipa_data-v3.1.c
drivers/net/ipa/ipa_data-v3.5.1.c drivers/net/ipa/data/ipa_data-v3.5.1.c
drivers/net/ipa/ipa_data-v4.11.c drivers/net/ipa/data/ipa_data-v4.11.c
drivers/net/ipa/ipa_data-v4.2.c drivers/net/ipa/data/ipa_data-v4.2.c
drivers/net/ipa/ipa_data-v4.5.c drivers/net/ipa/data/ipa_data-v4.5.c
drivers/net/ipa/ipa_data-v4.9.c drivers/net/ipa/data/ipa_data-v4.9.c