HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/41319 )
Change subject: mb/asrock/h110m: Remove direct 'include <soc/gpio.h>' ......................................................................
mb/asrock/h110m: 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: Ie77cfba2409e8443ebbd7b84517f45fb1ed83769 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/mainboard/asrock/h110m/bootblock.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/19/41319/1
diff --git a/src/mainboard/asrock/h110m/bootblock.c b/src/mainboard/asrock/h110m/bootblock.c index 079afd0..0a43363 100644 --- a/src/mainboard/asrock/h110m/bootblock.c +++ b/src/mainboard/asrock/h110m/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 <superio/nuvoton/common/nuvoton.h> #include <superio/nuvoton/nct6791d/nct6791d.h> #include "include/gpio.h"