Remove unnecessary includes

This commit is contained in:
Jeremy Soller
2019-12-30 10:25:48 -07:00
parent 1dc8539c5c
commit 390d6516be
2 changed files with 1 additions and 3 deletions

View File

@ -1,6 +1,5 @@
#include <stdbool.h>
#include <board/cpu.h>
#include <common/i2c.h>
#include <ec/smbus.h>

View File

@ -1,6 +1,5 @@
#include <stdbool.h>
#include <board/cpu.h>
#include <ec/ps2.h>
#define PS2(NUM) { \
@ -10,7 +9,7 @@
.data = &PSDAT ## NUM, \
}
#define TIMEOUT (F_CPU/1000)
#define TIMEOUT 1000
#define PSSTS_TIMEOUT_ERR (1 << 6)
#define PSSTS_FRAME_ERR (1 << 5)