From 11fff4e729a061b896d916b8e312f46ce862f1e4 Mon Sep 17 00:00:00 2001 From: Unknown Date: Wed, 30 May 2018 10:18:16 +0200 Subject: [PATCH] drivers/isrpipe: changed isrpipe_t content order --- sys/include/isrpipe.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/include/isrpipe.h b/sys/include/isrpipe.h index 7c9a43ca93..056b98cc09 100644 --- a/sys/include/isrpipe.h +++ b/sys/include/isrpipe.h @@ -35,8 +35,8 @@ extern "C" { * @brief Context structure for isrpipe */ typedef struct { - mutex_t mutex; /**< isrpipe mutex */ tsrb_t tsrb; /**< isrpipe thread safe ringbuffer */ + mutex_t mutex; /**< isrpipe mutex */ } isrpipe_t; /**