diff options
author | Anatolij Gustschin <agust@denx.de> | 2009-07-26 10:34:58 +0200 |
---|---|---|
committer | Anatolij Gustschin <agust@denx.de> | 2009-07-26 13:13:28 +0200 |
commit | bdc873ea063b8cc6d44c6ab748b7723a97d8d7b3 (patch) | |
tree | e1d6e7ed86079f286569e885c6303ef1b1eaa43e /lib_avr32 | |
parent | 716ece1de9a7d43a61d8698ac41b71b64f66f9e9 (diff) | |
download | u-boot-imx-bdc873ea063b8cc6d44c6ab748b7723a97d8d7b3.zip u-boot-imx-bdc873ea063b8cc6d44c6ab748b7723a97d8d7b3.tar.gz u-boot-imx-bdc873ea063b8cc6d44c6ab748b7723a97d8d7b3.tar.bz2 |
lib_avr32/board.c: fix too long line added by 716ece1d
Signed-off-by: Anatolij Gustschin <agust@denx.de>
Diffstat (limited to 'lib_avr32')
-rw-r--r-- | lib_avr32/board.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib_avr32/board.c b/lib_avr32/board.c index da03506..e2b0a2e 100644 --- a/lib_avr32/board.c +++ b/lib_avr32/board.c @@ -241,7 +241,8 @@ void board_init_f(ulong board_type) #ifdef CONFIG_LCD #ifdef CONFIG_FB_ADDR - printf("LCD: Frame buffer allocated at preset 0x%08x\n", CONFIG_FB_ADDR); + printf("LCD: Frame buffer allocated at preset 0x%08x\n", + CONFIG_FB_ADDR); gd->fb_base = (void *)CONFIG_FB_ADDR; #else addr = lcd_setmem(addr); |