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 Side-by-side Diff

board/altera/socfpga/socfpga_cyclone5.c
... ... @@ -17,7 +17,7 @@
17 17 */
18 18 int checkboard(void)
19 19 {
20   - puts("BOARD : Altera SOCFPGA Cyclone5 Board\n");
  20 + puts("BOARD: Altera SoCFPGA Cyclone5 Board\n");
21 21 return 0;
22 22 }
23 23