Skip to content
Snippets Groups Projects
Commit fb364bec authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

Fix include/common.h for boards with CONFIG_STATUS_LED


The reordering of include/common.h by commit fcd3c87e broke
boards with status LED support, resulting in
	error: #error Status LED configuration missing
errors. Undo this reordering to avoid this issue.

Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
parent 942828a0
No related branches found
No related tags found
No related merge requests found
......@@ -107,9 +107,6 @@ typedef volatile unsigned char vu_char;
#ifdef CONFIG_BLACKFIN
#include <asm/blackfin.h>
#endif
#ifdef CONFIG_STATUS_LED
#include <status_led.h>
#endif
#include <part.h>
#include <flash.h>
......@@ -684,6 +681,9 @@ int fgetc(int file);
int pcmcia_init (void);
#ifdef CONFIG_STATUS_LED
# include <status_led.h>
#endif
/*
* Board-specific Platform code can reimplement show_boot_progress () if needed
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment