From aea4c317220cb0ba2dd484df3bc82cb764485220 Mon Sep 17 00:00:00 2001 From: Johann Fischer Date: Wed, 21 Jun 2017 12:07:13 +0200 Subject: [PATCH] samples: wpanusb: remove unnecessary condition for ccflags The condition in src/Makefile is not necessary since the net_private.h is always included from wpanusb.c and is not dependent on the transceiver. Change-Id: I07a0bf599f328bacb8c5677f20eb221a05f30866 Signed-off-by: Johann Fischer --- samples/net/wpanusb/src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/net/wpanusb/src/Makefile b/samples/net/wpanusb/src/Makefile index 90278c45c57..97f7bbcf0d2 100644 --- a/samples/net/wpanusb/src/Makefile +++ b/samples/net/wpanusb/src/Makefile @@ -1,5 +1,5 @@ ccflags-y += -I${ZEPHYR_BASE}/usb/include -I${ZEPHYR_BASE}/include/drivers/usb -I${ZEPHYR_BASE}/include/usb/ -ccflags-$(CONFIG_IEEE802154_CC2520_RAW) += -I${ZEPHYR_BASE}/subsys/net/ip +ccflags-y += -I${ZEPHYR_BASE}/subsys/net/ip obj-y += wpanusb.o