From 5ceb612738a70f0cac2b432e72c227ed516d364e Mon Sep 17 00:00:00 2001 From: Peter Bigot Date: Sat, 25 Jan 2020 05:35:02 -0600 Subject: [PATCH] treewide: use full path to spi.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/spi/spi_oc_simple.c | 2 +- subsys/disk/disk_access_sdhc.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/spi/spi_oc_simple.c b/drivers/spi/spi_oc_simple.c index 4bf890a10f8..e3c9e912390 100644 --- a/drivers/spi/spi_oc_simple.c +++ b/drivers/spi/spi_oc_simple.c @@ -9,7 +9,7 @@ LOG_MODULE_REGISTER(spi_oc_simple); #include -#include +#include #include "spi_context.h" #include "spi_oc_simple.h" diff --git a/subsys/disk/disk_access_sdhc.h b/subsys/disk/disk_access_sdhc.h index 3ce7d7a767d..7b6de430396 100644 --- a/subsys/disk/disk_access_sdhc.h +++ b/subsys/disk/disk_access_sdhc.h @@ -8,7 +8,7 @@ #ifndef ZEPHYR_INCLUDE_DISK_ACCESS_SDHC_H_ #define ZEPHYR_INCLUDE_DISK_ACCESS_SDHC_H_ -#include +#include #define SDMMC_CLOCK_400KHZ (400000U) #define SD_CLOCK_25MHZ (25000000U)