Elyes Haouas has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/68875 )
Change subject: console/console.h: Add 'IWYU pragma: export' comment ......................................................................
console/console.h: Add 'IWYU pragma: export' comment
Say to IWYU (Include What You Use) that <commonlib/loglevel.h> is chain-included via <console/console.h>
Change-Id: I72ca6b256d75cccb247f6058bb108bfc456eaf23 Signed-off-by: Elyes Haouas ehaouas@noos.fr --- M src/include/console/console.h 1 file changed, 14 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/75/68875/1
diff --git a/src/include/console/console.h b/src/include/console/console.h index 49bce61..7061f36 100644 --- a/src/include/console/console.h +++ b/src/include/console/console.h @@ -8,7 +8,7 @@ #include <stdint.h>
/* console.h is supposed to provide the log levels defined in here: */ -#include <commonlib/loglevel.h> +#include <commonlib/loglevel.h> // IWYU pragma: export
#define RAM_DEBUG (CONFIG(DEBUG_RAM_SETUP) ? BIOS_DEBUG : BIOS_NEVER) #define RAM_SPEW (CONFIG(DEBUG_RAM_SETUP) ? BIOS_SPEW : BIOS_NEVER)