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.

net: ipa: fix build

After commit 2c7b9b936bdc ("net: ipa: move configuration data files
into a subdirectory"), build of the ipa driver fails with the
following error:

drivers/net/ipa/data/ipa_data-v3.1.c:9:10: fatal error: gsi.h: No such file or directory

After the mentioned commit, all the file included by the configuration
are in the parent directory. Fix the issue updating the include path.

Fixes: 2c7b9b936bdc ("net: ipa: move configuration data files into a subdirectory")
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Link: https://lore.kernel.org/r/7105112c38cfe0642a2d9e1779bf784a7aa63d16.1658411666.git.pabeni@redhat.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

authored by

Paolo Abeni and committed by
Jakub Kicinski
32d00f62 6e0e846e

+24 -24
+4 -4
drivers/net/ipa/data/ipa_data-v3.1.c
··· 6 6 7 7 #include <linux/log2.h> 8 8 9 - #include "gsi.h" 10 - #include "ipa_data.h" 11 - #include "ipa_endpoint.h" 12 - #include "ipa_mem.h" 9 + #include "../gsi.h" 10 + #include "../ipa_data.h" 11 + #include "../ipa_endpoint.h" 12 + #include "../ipa_mem.h" 13 13 14 14 /** enum ipa_resource_type - IPA resource types for an SoC having IPA v3.1 */ 15 15 enum ipa_resource_type {
+4 -4
drivers/net/ipa/data/ipa_data-v3.5.1.c
··· 6 6 7 7 #include <linux/log2.h> 8 8 9 - #include "gsi.h" 10 - #include "ipa_data.h" 11 - #include "ipa_endpoint.h" 12 - #include "ipa_mem.h" 9 + #include "../gsi.h" 10 + #include "../ipa_data.h" 11 + #include "../ipa_endpoint.h" 12 + #include "../ipa_mem.h" 13 13 14 14 /** enum ipa_resource_type - IPA resource types for an SoC having IPA v3.5.1 */ 15 15 enum ipa_resource_type {
+4 -4
drivers/net/ipa/data/ipa_data-v4.11.c
··· 4 4 5 5 #include <linux/log2.h> 6 6 7 - #include "gsi.h" 8 - #include "ipa_data.h" 9 - #include "ipa_endpoint.h" 10 - #include "ipa_mem.h" 7 + #include "../gsi.h" 8 + #include "../ipa_data.h" 9 + #include "../ipa_endpoint.h" 10 + #include "../ipa_mem.h" 11 11 12 12 /** enum ipa_resource_type - IPA resource types for an SoC having IPA v4.11 */ 13 13 enum ipa_resource_type {
+4 -4
drivers/net/ipa/data/ipa_data-v4.2.c
··· 4 4 5 5 #include <linux/log2.h> 6 6 7 - #include "gsi.h" 8 - #include "ipa_data.h" 9 - #include "ipa_endpoint.h" 10 - #include "ipa_mem.h" 7 + #include "../gsi.h" 8 + #include "../ipa_data.h" 9 + #include "../ipa_endpoint.h" 10 + #include "../ipa_mem.h" 11 11 12 12 /** enum ipa_resource_type - IPA resource types for an SoC having IPA v4.2 */ 13 13 enum ipa_resource_type {
+4 -4
drivers/net/ipa/data/ipa_data-v4.5.c
··· 4 4 5 5 #include <linux/log2.h> 6 6 7 - #include "gsi.h" 8 - #include "ipa_data.h" 9 - #include "ipa_endpoint.h" 10 - #include "ipa_mem.h" 7 + #include "../gsi.h" 8 + #include "../ipa_data.h" 9 + #include "../ipa_endpoint.h" 10 + #include "../ipa_mem.h" 11 11 12 12 /** enum ipa_resource_type - IPA resource types for an SoC having IPA v4.5 */ 13 13 enum ipa_resource_type {
+4 -4
drivers/net/ipa/data/ipa_data-v4.9.c
··· 4 4 5 5 #include <linux/log2.h> 6 6 7 - #include "gsi.h" 8 - #include "ipa_data.h" 9 - #include "ipa_endpoint.h" 10 - #include "ipa_mem.h" 7 + #include "../gsi.h" 8 + #include "../ipa_data.h" 9 + #include "../ipa_endpoint.h" 10 + #include "../ipa_mem.h" 11 11 12 12 /** enum ipa_resource_type - IPA resource types for an SoC having IPA v4.9 */ 13 13 enum ipa_resource_type {