From f7ae49fc4f363a803dab3be078e93ead8e75a8e9 Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 10 May 2020 11:40:05 -0600 Subject: common: Drop log.h from common header Move this header out of the common header. Signed-off-by: Simon Glass --- env/common.c | 1 + env/env.c | 1 + env/flash.c | 1 + 3 files changed, 3 insertions(+) (limited to 'env') diff --git a/env/common.c b/env/common.c index 0256b3e356..088b2aebb4 100644 --- a/env/common.c +++ b/env/common.c @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include diff --git a/env/env.c b/env/env.c index 9237bb9c74..393f1490de 100644 --- a/env/env.c +++ b/env/env.c @@ -7,6 +7,7 @@ #include #include #include +#include DECLARE_GLOBAL_DATA_PTR; diff --git a/env/flash.c b/env/flash.c index e05f7ef74b..3198147c38 100644 --- a/env/flash.c +++ b/env/flash.c @@ -14,6 +14,7 @@ #include #include #include +#include #include #include #include -- cgit