From patchwork Mon Jun 8 02:33:00 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Glass X-Patchwork-Id: 241894 List-Id: U-Boot discussion From: sjg at chromium.org (Simon Glass) Date: Sun, 7 Jun 2020 20:33:00 -0600 Subject: [PATCH] cmd: Correct the 'md.q' command Message-ID: <20200607203257.1.I8b8b366d25a80796255285c9e7c1327a40ac8beb@changeid> This displays incorrect data at present due to a missing header file in display_options. Fix it. Fixes: 09140113108 ("command: Remove the cmd_tbl_t typedef") Signed-off-by: Simon Glass --- lib/display_options.c | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/display_options.c b/lib/display_options.c index 74f769d9ff..1dd5b6affd 100644 --- a/lib/display_options.c +++ b/lib/display_options.c @@ -5,6 +5,7 @@ */ #include +#include #include #include #include