HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/41326 )
Change subject: mb/supermicro/x11-lga1151-series: Remove direct 'include <soc/gpio.h>' ......................................................................
mb/supermicro/x11-lga1151-series: 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: Ie2b5374b2ef1f2bfea865bb69a94b94a99de4e13 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/mainboard/supermicro/x11-lga1151-series/bootblock.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/26/41326/1
diff --git a/src/mainboard/supermicro/x11-lga1151-series/bootblock.c b/src/mainboard/supermicro/x11-lga1151-series/bootblock.c index 94eeee7..f96a401 100644 --- a/src/mainboard/supermicro/x11-lga1151-series/bootblock.c +++ b/src/mainboard/supermicro/x11-lga1151-series/bootblock.c @@ -1,7 +1,7 @@ /* SPDX-License-Identifier: GPL-2.0-only */
#include <bootblock_common.h> -#include <soc/gpio.h> +#include <gpio.h> #include <variant/gpio.h> #include <superio/aspeed/common/aspeed.h> #include <superio/aspeed/ast2400/ast2400.h>