HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/41305 )
Change subject: mb/google/storm: Remove direct 'include <soc/gpio.h>' ......................................................................
mb/google/storm: Remove direct 'include <soc/gpio.h>'
Don't directly include <soc/gpio.h>. All code using GPIO features should always and only include <gpio.h>, which should indirectly include the SoC-specific <soc/gpio.h>.
Change-Id: I7b78525a061b10129e5362faa2f0a86639664392 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/mainboard/google/storm/gsbi.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/05/41305/1
diff --git a/src/mainboard/google/storm/gsbi.c b/src/mainboard/google/storm/gsbi.c index 311bf14..1eaf5da 100644 --- a/src/mainboard/google/storm/gsbi.c +++ b/src/mainboard/google/storm/gsbi.c @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: BSD-3-Clause */
-#include <soc/gpio.h> +#include <gpio.h> #include <soc/gsbi.h> #include <soc/qup.h>