From 90606da02dffb61195ade325f2be2e170e7c410c Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Sun, 7 Jun 2020 20:33:00 -0600 Subject: [PATCH] cmd: Correct the 'md.q' command 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 74f769d..1dd5b6a 100644 --- a/lib/display_options.c +++ b/lib/display_options.c @@ -5,6 +5,7 @@ */ #include +#include #include #include #include -- 2.7.4