Commit 604364e42cf7dd3c4980901b47ee47eb4b490e4b

Authored by Marek Vasut
1 parent 868749a61d

arm: socfpga: board: Align checkboard() output

Cosmetic change to the checkboard() function output. Align the
output with the rest of initial output produced by U-Boot.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Chin Liang See <clsee@altera.com>
Cc: Dinh Nguyen <dinguyen@altera.com>
Cc: Albert Aribaud <albert.u.boot@aribaud.net>
Cc: Tom Rini <trini@ti.com>
Cc: Wolfgang Denk <wd@denx.de>
Cc: Pavel Machek <pavel@denx.de>
Acked-by: Pavel Machek <pavel@denx.de>

Showing 1 changed file with 1 additions and 1 deletions Inline Diff

board/altera/socfpga/socfpga_cyclone5.c
1 /* 1 /*
2 * Copyright (C) 2012 Altera Corporation <www.altera.com> 2 * Copyright (C) 2012 Altera Corporation <www.altera.com>
3 * 3 *
4 * SPDX-License-Identifier: GPL-2.0+ 4 * SPDX-License-Identifier: GPL-2.0+
5 */ 5 */
6 6
7 #include <common.h> 7 #include <common.h>
8 #include <asm/arch/reset_manager.h> 8 #include <asm/arch/reset_manager.h>
9 #include <asm/io.h> 9 #include <asm/io.h>
10 10
11 #include <netdev.h> 11 #include <netdev.h>
12 12
13 DECLARE_GLOBAL_DATA_PTR; 13 DECLARE_GLOBAL_DATA_PTR;
14 14
15 /* 15 /*
16 * Print Board information 16 * Print Board information
17 */ 17 */
18 int checkboard(void) 18 int checkboard(void)
19 { 19 {
20 puts("BOARD : Altera SOCFPGA Cyclone5 Board\n"); 20 puts("BOARD: Altera SoCFPGA Cyclone5 Board\n");
21 return 0; 21 return 0;
22 } 22 }
23 23
24 /* 24 /*
25 * Initialization function which happen at early stage of c code 25 * Initialization function which happen at early stage of c code
26 */ 26 */
27 int board_early_init_f(void) 27 int board_early_init_f(void)
28 { 28 {
29 return 0; 29 return 0;
30 } 30 }
31 31
32 /* 32 /*
33 * Miscellaneous platform dependent initialisations 33 * Miscellaneous platform dependent initialisations
34 */ 34 */
35 int board_init(void) 35 int board_init(void)
36 { 36 {
37 icache_enable(); 37 icache_enable();
38 38
39 /* Address of boot parameters for ATAG (if ATAG is used) */ 39 /* Address of boot parameters for ATAG (if ATAG is used) */
40 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; 40 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
41 41
42 return 0; 42 return 0;
43 } 43 }
44 44