From 29fc58bc79dab037a9288ba75be9a6a4bc5c1eb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Mon, 25 Mar 2019 16:39:15 +0100 Subject: [PATCH] drivers/at: remove the direct dependency to xtimer `at` is not using the `xtimer` module directly but only through 'isrpipe_read_timeout'. --- drivers/Makefile.dep | 1 - drivers/at/at.c | 1 - 2 files changed, 2 deletions(-) diff --git a/drivers/Makefile.dep b/drivers/Makefile.dep index 050617707e..5b327821e0 100644 --- a/drivers/Makefile.dep +++ b/drivers/Makefile.dep @@ -32,7 +32,6 @@ endif ifneq (,$(filter at,$(USEMODULE))) FEATURES_REQUIRED += periph_uart USEMODULE += fmt - USEMODULE += xtimer USEMODULE += isrpipe USEMODULE += isrpipe_read_timeout endif diff --git a/drivers/at/at.c b/drivers/at/at.c index e784ef2002..c86087319b 100644 --- a/drivers/at/at.c +++ b/drivers/at/at.c @@ -14,7 +14,6 @@ #include "isrpipe.h" #include "isrpipe/read_timeout.h" #include "periph/uart.h" -#include "xtimer.h" #define ENABLE_DEBUG (0) #include "debug.h"