drivers: spi: spi_nrfx_spim: fix !LEGACY_INCLUDE_PATH

Add missing zephyr/ prefix to fix CONFIG_LEGACY_INCLUDE_PATH=n build.

Fixes: d64dc771f3 ("drivers: spi: spi_nrfx_spim: utilize EasyDMA property
  from devicetree")

Signed-off-by: Marcin Niestroj <m.niestroj@emb.dev>
This commit is contained in:
Marcin Niestroj 2022-06-06 07:06:38 +02:00 committed by Carles Cufí
commit 774a3cd756

View file

@ -15,7 +15,7 @@
#include <nrfx_spim.h>
#include <hal/nrf_clock.h>
#include <string.h>
#include <linker/devicetree_regions.h>
#include <zephyr/linker/devicetree_regions.h>
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(spi_nrfx_spim, CONFIG_SPI_LOG_LEVEL);