1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

drivers/isrpipe: changed isrpipe_t content order

This commit is contained in:
Unknown 2018-05-30 10:18:16 +02:00
parent 5997deebae
commit 11fff4e729

View File

@ -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;
/**