Commit bf2200e8 authored by Jakub Kicinski's avatar Jakub Kicinski
Browse files

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: default avatarJakub Kicinski <kuba@kernel.org>
parents 4ab6e359 2c7b9b93
Loading
Loading
Loading
Loading
+7 −3
Original line number Diff line number Diff line
# SPDX-License-Identifier: GPL-2.0
#
# Makefile for the Qualcomm IPA driver.

IPA_VERSIONS		:=	3.1 3.5.1 4.2 4.5 4.9 4.11

obj-$(CONFIG_QCOM_IPA)	+=	ipa.o

ipa-y			:=	ipa_main.o ipa_power.o ipa_reg.o ipa_mem.o \
@@ -7,6 +13,4 @@ ipa-y := ipa_main.o ipa_power.o ipa_reg.o ipa_mem.o \
				ipa_resource.o ipa_qmi.o ipa_qmi_msg.o \
				ipa_sysfs.o

ipa-y			+=	ipa_data-v3.1.o ipa_data-v3.5.1.o \
				ipa_data-v4.2.o ipa_data-v4.5.o \
				ipa_data-v4.9.o ipa_data-v4.11.o
ipa-y			+=	$(IPA_VERSIONS:%=data/ipa_data-v%.o)
Loading