mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-27 16:01:27 +00:00
command: Include a required header in command.h
This uses ARRAY_SIZE() but does not include the header file which declares it. Fix this, so that command.h can be included without common.h Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Mattijs Korpershoek <mkorpershoek@baylibre.com>
This commit is contained in:
parent
14d9f63dcf
commit
be5951461c
2 changed files with 5 additions and 1 deletions
|
@ -8,6 +8,7 @@
|
|||
#include <common.h>
|
||||
#include <bootstage.h>
|
||||
#include <cli.h>
|
||||
#include <command.h>
|
||||
#include <cpu_func.h>
|
||||
#include <env.h>
|
||||
#include <errno.h>
|
||||
|
@ -29,7 +30,6 @@
|
|||
#include "mkimage.h"
|
||||
#endif
|
||||
|
||||
#include <command.h>
|
||||
#include <bootm.h>
|
||||
#include <image.h>
|
||||
|
||||
|
|
|
@ -25,6 +25,10 @@
|
|||
#endif
|
||||
|
||||
#ifndef __ASSEMBLY__
|
||||
|
||||
/* For ARRAY_SIZE() */
|
||||
#include <linux/kernel.h>
|
||||
|
||||
/*
|
||||
* Monitor Command Table
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue