From: Sean Anderson <seanga2@gmail.com>
Date: Wed, 25 Dec 2019 04:54:54 +0000 (-0500)
Subject: log: Include missing header for log.h
X-Git-Tag: v2025.01-rc5-pxa1908~2614^2
X-Git-Url: http://git.dujemihanovic.xyz/img/html/static/login.html?a=commitdiff_plain;h=aaa05deb1283b6beb7334adfa4094fb6bd4ab750;p=u-boot.git

log: Include missing header for log.h

log.h references cmd_tbl_t but command.h was not included

Signed-off-by: Sean Anderson <seanga2@gmail.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
---

diff --git a/include/log.h b/include/log.h
index 64b787d0ba..62fb8afbd0 100644
--- a/include/log.h
+++ b/include/log.h
@@ -9,6 +9,7 @@
 #ifndef __LOG_H
 #define __LOG_H
 
+#include <command.h>
 #include <dm/uclass-id.h>
 #include <linux/list.h>