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

drivers/apds99xx: Fix includes

The driver does not depend on or use the xtimer module, it should therefore
not include `xtimer.h`. Same for the test, which additionally missed an
include of `mutex.h` (previously implicitly included through `xtimer.h`).
This commit is contained in:
Marian Buschsieweke 2020-08-20 20:35:54 +02:00
parent 970fdff2c6
commit 2690b272d9
No known key found for this signature in database
GPG Key ID: 61F64C6599B1539F
2 changed files with 1 additions and 2 deletions

View File

@ -23,7 +23,6 @@
#include "irq.h"
#include "log.h"
#include "xtimer.h"
#define ENABLE_DEBUG (0)
#include "debug.h"

View File

@ -35,9 +35,9 @@
#include <stdio.h>
#include "mutex.h"
#include "thread.h"
#include "thread_flags.h"
#include "xtimer.h"
#include "apds99xx.h"
#include "apds99xx_params.h"