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:
parent
970fdff2c6
commit
2690b272d9
@ -23,7 +23,6 @@
|
||||
|
||||
#include "irq.h"
|
||||
#include "log.h"
|
||||
#include "xtimer.h"
|
||||
|
||||
#define ENABLE_DEBUG (0)
|
||||
#include "debug.h"
|
||||
|
@ -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"
|
||||
|
Loading…
Reference in New Issue
Block a user