From c05ed00afb95fa5237f16962fccf5810437317bf Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 10 May 2020 11:40:11 -0600 Subject: common: Drop linux/delay.h from common header Move this uncommon header out of the common header. Signed-off-by: Simon Glass --- include/common.h | 1 - include/configs/MPC8560ADS.h | 2 ++ include/configs/km/km_arm.h | 1 + include/exports.h | 1 + include/regmap.h | 2 ++ include/xyzModem.h | 2 ++ 6 files changed, 8 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/common.h b/include/common.h index 552cb298a2..f7c0f5724a 100644 --- a/include/common.h +++ b/include/common.h @@ -17,7 +17,6 @@ #include #include #include -#include #include #include #include diff --git a/include/configs/MPC8560ADS.h b/include/configs/MPC8560ADS.h index 866049febf..97d8cc48ed 100644 --- a/include/configs/MPC8560ADS.h +++ b/include/configs/MPC8560ADS.h @@ -17,6 +17,8 @@ #ifndef __CONFIG_H #define __CONFIG_H +#include + /* High Level Configuration Options */ #define CONFIG_CPM2 1 /* has CPM2 */ diff --git a/include/configs/km/km_arm.h b/include/configs/km/km_arm.h index 4e833faa87..79edfa728a 100644 --- a/include/configs/km/km_arm.h +++ b/include/configs/km/km_arm.h @@ -104,6 +104,7 @@ #ifndef __ASSEMBLY__ #include +#include #include extern void __set_direction(unsigned pin, int high); void set_sda(int state); diff --git a/include/exports.h b/include/exports.h index 85f9a7a708..b300554091 100644 --- a/include/exports.h +++ b/include/exports.h @@ -2,6 +2,7 @@ #define __EXPORTS_H__ #include +#include #ifndef __ASSEMBLY__ #ifdef CONFIG_PHY_AQUANTIA diff --git a/include/regmap.h b/include/regmap.h index 9ada1af5ef..30183c5e71 100644 --- a/include/regmap.h +++ b/include/regmap.h @@ -7,6 +7,8 @@ #ifndef __REGMAP_H #define __REGMAP_H +#include + /** * DOC: Overview * diff --git a/include/xyzModem.h b/include/xyzModem.h index 6fae634961..a8911b6bf5 100644 --- a/include/xyzModem.h +++ b/include/xyzModem.h @@ -25,6 +25,8 @@ #ifndef _XYZMODEM_H_ #define _XYZMODEM_H_ +#include + #define xyzModem_xmodem 1 #define xyzModem_ymodem 2 /* Don't define this until the protocol support is in place */ -- cgit