From ee35fab6f7df978c4c9942db4738e9b225db96bd Mon Sep 17 00:00:00 2001 From: Peter Bigot Date: Sat, 25 Jan 2020 05:34:54 -0600 Subject: [PATCH] treewide: use full path to counter.h header The build infrastructure should not be adding the drivers subdirectory to the include path. Fix the legacy uses that depended on that addition. Signed-off-by: Peter Bigot --- drivers/counter/counter_mchp_xec.c | 2 +- drivers/counter/counter_mcux_gpt.c | 2 +- tests/arch/x86/info/src/timer.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/drivers/counter/counter_mchp_xec.c b/drivers/counter/counter_mchp_xec.c index dca8ae832f0..3c547b0aa9a 100644 --- a/drivers/counter/counter_mchp_xec.c +++ b/drivers/counter/counter_mchp_xec.c @@ -23,7 +23,7 @@ #include LOG_MODULE_REGISTER(counter_mchp_xec, CONFIG_COUNTER_LOG_LEVEL); -#include +#include #include #include #include diff --git a/drivers/counter/counter_mcux_gpt.c b/drivers/counter/counter_mcux_gpt.c index 93fa61062c6..645bf1aabb7 100644 --- a/drivers/counter/counter_mcux_gpt.c +++ b/drivers/counter/counter_mcux_gpt.c @@ -4,7 +4,7 @@ * SPDX-License-Identifier: Apache-2.0 */ -#include +#include #include #include diff --git a/tests/arch/x86/info/src/timer.c b/tests/arch/x86/info/src/timer.c index 9db8ce3f7ff..87b4d39bb3b 100644 --- a/tests/arch/x86/info/src/timer.c +++ b/tests/arch/x86/info/src/timer.c @@ -5,7 +5,7 @@ #include #include -#include +#include #define NR_SAMPLES 10 /* sample timer 10 times */