From 5d2002d3dceb6f46b87d184a11f3850e9ac986f2 Mon Sep 17 00:00:00 2001 From: Robert Lubos Date: Fri, 12 Jul 2019 11:05:34 +0200 Subject: [PATCH] drivers: ieee802154_nrf: Fix SoC header inclusion The nRF 802.15.4 radio driver should not include nRF52840 header directly, but rely on soc.h instead. Otherwise, it will not work with different SoCs supporting 802.15.4. Signed-off-by: Robert Lubos --- drivers/ieee802154/ieee802154_nrf5.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/ieee802154/ieee802154_nrf5.c b/drivers/ieee802154/ieee802154_nrf5.c index a837a1eef90..7fc4564e661 100644 --- a/drivers/ieee802154/ieee802154_nrf5.c +++ b/drivers/ieee802154/ieee802154_nrf5.c @@ -37,7 +37,6 @@ LOG_MODULE_REGISTER(LOG_MODULE_NAME); #include -#include "nrf52840.h" #include "ieee802154_nrf5.h" #include "nrf_802154.h"