HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/41282 )
Change subject: Documentation: Remove direct 'include <soc/gpio.h>' ......................................................................
Documentation: 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: I6644db8a81fb95b97a5e3e5551ce6254efa61ae4 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M Documentation/mainboard_io_trap_handler_sample.c 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/82/41282/1
diff --git a/Documentation/mainboard_io_trap_handler_sample.c b/Documentation/mainboard_io_trap_handler_sample.c index 558e12f..1d1056b 100644 --- a/Documentation/mainboard_io_trap_handler_sample.c +++ b/Documentation/mainboard_io_trap_handler_sample.c @@ -3,11 +3,11 @@ #include <arch/io.h> #include <console/console.h> #include <cpu/x86/smm.h> +#include <gpio.h> #include <soc/pm.h> #include <soc/smm.h> #include <elog.h> #include <ec/google/chromeec/ec.h> -#include <soc/gpio.h> #include <soc/iomap.h> #include <soc/nvs.h> #include <soc/pm.h>
HAOUAS Elyes has abandoned this change. ( https://review.coreboot.org/c/coreboot/+/41282 )
Change subject: Documentation: Remove direct 'include <soc/gpio.h>' ......................................................................
Abandoned
see #41324