diff options
author | Simon Glass <sjg@chromium.org> | 2013-03-11 07:40:13 +0000 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-03-15 16:14:00 -0400 |
commit | e424c15c1f4ef8a084120f111d95da60676ba1cc (patch) | |
tree | 6e709c7576dc6a66c623d9784b22963d42e81f36 /common | |
parent | 86cfb6bdecc3a312a939bbd89560f500f45193c3 (diff) | |
download | u-boot-imx-e424c15c1f4ef8a084120f111d95da60676ba1cc.zip u-boot-imx-e424c15c1f4ef8a084120f111d95da60676ba1cc.tar.gz u-boot-imx-e424c15c1f4ef8a084120f111d95da60676ba1cc.tar.bz2 |
x86: Enable generic board support
This enables generic board support so that x86 boards can define
CONFIG_SYS_GENERIC_BOARD.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/board_r.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/board_r.c b/common/board_r.c index 63c6936..9605f80 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -507,11 +507,13 @@ static int show_model_r(void) #endif /* enable exceptions */ +#ifdef CONFIG_ARM static int initr_enable_interrupts(void) { enable_interrupts(); return 0; } +#endif #ifdef CONFIG_CMD_NET static int initr_ethaddr(void) |