summaryrefslogtreecommitdiff
path: root/common/console_output.c
diff options
context:
space:
mode:
authorJack Rosenthal <jrosenth@chromium.org>2020-09-17 09:45:07 -0600
committerCommit Bot <commit-bot@chromium.org>2020-09-24 07:48:22 +0000
commit1c3c2140f333f4a169f047fad8a780d0b71c2e5d (patch)
tree20097f947fd6e4c56f0a10c3f2a087c7d421e2c8 /common/console_output.c
parent1577603a46906a17525d75aaf502a3b821736b2b (diff)
downloadchrome-ec-1c3c2140f333f4a169f047fad8a780d0b71c2e5d.tar.gz
common: include console_channel.inc to be relative to include/
"include/" is unnecessary in the front of these include paths since -Iinclude/ is already in the compiler flags. BUG=b:167590251 BRANCH=none TEST=compiles Signed-off-by: Jack Rosenthal <jrosenth@chromium.org> Change-Id: I9b815b9d190d3a1b16fe67c0e99199b1001648bb Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/ec/+/2427087 Reviewed-by: Jett Rink <jettrink@chromium.org>
Diffstat (limited to 'common/console_output.c')
-rw-r--r--common/console_output.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/console_output.c b/common/console_output.c
index 86072d9b62..23c208c61b 100644
--- a/common/console_output.c
+++ b/common/console_output.c
@@ -29,7 +29,7 @@ static uint32_t channel_mask_saved = CC_DEFAULT;
*/
static const char * const channel_names[] = {
#define CONSOLE_CHANNEL(enumeration, string) string,
- #include "include/console_channel.inc"
+ #include "console_channel.inc"
#undef CONSOLE_CHANNEL
};
BUILD_ASSERT(ARRAY_SIZE(channel_names) == CC_CHANNEL_COUNT);