From 950274078a3cc11bd5a1dc338d6048a60ae792ec Mon Sep 17 00:00:00 2001 From: cladmi Date: Mon, 8 Oct 2018 14:57:26 +0200 Subject: [PATCH] tests/openthread: remove useless dependency handling The features requirement declaration in the application is useless. It is already handled by `drivers/Makefile.dep`. Testing procedure The result is unchanged with this commit: make BOARD=samr21-xpro info-debug-variable-FEATURES_REQUIRED | tail -n 1 | \ tr ' ' '\n' | sort -u make BOARD=iotlab-m3 info-debug-variable-FEATURES_REQUIRED | tail -n 1 | \ tr ' ' '\n' | sort -u --- tests/openthread/Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/tests/openthread/Makefile b/tests/openthread/Makefile index 7562ad38ea..258d30bc48 100644 --- a/tests/openthread/Makefile +++ b/tests/openthread/Makefile @@ -25,11 +25,6 @@ ifneq (,$(filter iotlab-m3 fox iotlab-a8-m3,$(BOARD))) DRIVER := at86rf231 endif -ifneq (,$(filter at86rf2%,$(DRIVER))) - FEATURES_REQUIRED += periph_spi - FEATURES_REQUIRED += periph_gpio -endif - USEMODULE += $(DRIVER) USEMODULE += random