[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 sjg@chromium.org ---
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 <common.h> +#include <compiler.h> #include <console.h> #include <div64.h> #include <version.h>

On Sun, Jun 07, 2020 at 08:33:00PM -0600, Simon Glass wrote:
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 sjg@chromium.org
Applied to u-boot/master, thanks!
participants (2)
-
Simon Glass
-
Tom Rini