From a22d7ad5cdc244665f161cddf99d5165580ad796 Mon Sep 17 00:00:00 2001 From: Francisco Acosta <fco.ja.ac@gmail.com> Date: Tue, 29 May 2018 20:49:46 +0200 Subject: [PATCH] drivers: prepare for moving EEPROM definitions IMHO and I think it's more logical, EEPROM definitions don't belong to cpu_conf.h but to periph_conf.h, thus I moved all of them to that place. --- drivers/periph_common/eeprom.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/periph_common/eeprom.c b/drivers/periph_common/eeprom.c index f04c7af866..acd4f1b4c3 100644 --- a/drivers/periph_common/eeprom.c +++ b/drivers/periph_common/eeprom.c @@ -19,7 +19,9 @@ */ #include <string.h> + #include "cpu.h" +#include "periph_cpu.h" #include "assert.h" /* guard this file, must be done before including periph/eeprom.h */ -- GitLab