diff options
author | Alex Elder <elder@linaro.org> | 2022-07-19 10:08:27 -0500 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2022-07-20 21:05:41 -0700 |
commit | 2c7b9b936bdc6ff0a7a5f6aed8e55d27ca14807d (patch) | |
tree | 02b4c9ce2c94391d94f57a159eb9682020e7b975 /drivers/net/ipa/Makefile | |
parent | ec2ea5e06c67f85c6541a74b661722a176be086f (diff) | |
download | linux-2c7b9b936bdc6ff0a7a5f6aed8e55d27ca14807d.tar.gz |
net: ipa: move configuration data files into a subdirectory
Reduce the clutter in the main IPA source directory by creating a
new "data" subdirectory, and locating all of the configuration data
files in there.
Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'drivers/net/ipa/Makefile')
-rw-r--r-- | drivers/net/ipa/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ipa/Makefile b/drivers/net/ipa/Makefile index 14b313fefa3a..8b2220eb6b92 100644 --- a/drivers/net/ipa/Makefile +++ b/drivers/net/ipa/Makefile @@ -13,4 +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_VERSIONS:%=ipa_data-v%.o) +ipa-y += $(IPA_VERSIONS:%=data/ipa_data-v%.o) |