From 5e2b24a5e4bdabc97f59c20f25d7a343da134a6f Mon Sep 17 00:00:00 2001 From: Peter Bigot Date: Sat, 25 Jan 2020 05:35:00 -0600 Subject: [PATCH] treewide: use full path to led/ht16k33.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/gpio/gpio_ht16k33.c | 2 +- drivers/led/ht16k33.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/gpio/gpio_ht16k33.c b/drivers/gpio/gpio_ht16k33.c index dd2b5f3deb0..59341b68734 100644 --- a/drivers/gpio/gpio_ht16k33.c +++ b/drivers/gpio/gpio_ht16k33.c @@ -16,7 +16,7 @@ #include LOG_MODULE_REGISTER(gpio_ht16k33); -#include +#include #include "gpio_utils.h" diff --git a/drivers/led/ht16k33.c b/drivers/led/ht16k33.c index 1119abc15b8..4450440a852 100644 --- a/drivers/led/ht16k33.c +++ b/drivers/led/ht16k33.c @@ -20,7 +20,7 @@ #include LOG_MODULE_REGISTER(ht16k33); -#include +#include #include "led_context.h"