From d220b65b8fb69e3588dccba84e544fbc766de5d6 Mon Sep 17 00:00:00 2001 From: Subrata Banik Date: Sat, 16 Aug 2025 11:30:59 +0530 Subject: [PATCH] soc/qualcomm/qcs405: Add common include path Add the common Qualcomm SoC include path to the qcs405 Makefile. This allows the SoC-specific code to use shared headers located in `src/soc/qualcomm/common/include`, promoting better code reuse and organization. TEST=Build for qcs405 target successfully. Change-Id: Ie4bc9f3a4fc259adcdc4107c92aab0cb5c8676c1 Signed-off-by: Subrata Banik Reviewed-on: https://review.coreboot.org/c/coreboot/+/88789 Tested-by: build bot (Jenkins) Reviewed-by: Kapil Porwal --- src/soc/qualcomm/qcs405/Makefile.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/src/soc/qualcomm/qcs405/Makefile.mk b/src/soc/qualcomm/qcs405/Makefile.mk index 5512af5650..6010759ca5 100644 --- a/src/soc/qualcomm/qcs405/Makefile.mk +++ b/src/soc/qualcomm/qcs405/Makefile.mk @@ -27,5 +27,6 @@ ramstage-y += usb.c ################################################################################ CPPFLAGS_common += -Isrc/soc/qualcomm/qcs405/include +CPPFLAGS_common += -Isrc/soc/qualcomm/common/include endif