mirror of
https://xff.cz/git/u-boot/
synced 2025-10-03 00:11:30 +02:00
board: raspberrypi: Fix format specifier for printing rev_scheme
rev_scheme is an unsigned integer and must not be printed as a signed integer. Signed-off-by: Francois Berder <fberder@outlook.fr> Reviewed-by: Peter Robinson <pbrobinson@gmail.com>
This commit is contained in:
committed by
Peter Robinson
parent
599422192e
commit
c06687aa06
@@ -382,7 +382,7 @@ static void set_board_info(void)
|
||||
|
||||
snprintf(s, sizeof(s), "0x%X", revision);
|
||||
env_set("board_revision", s);
|
||||
snprintf(s, sizeof(s), "%d", rev_scheme);
|
||||
snprintf(s, sizeof(s), "%u", rev_scheme);
|
||||
env_set("board_rev_scheme", s);
|
||||
/* Can't rename this to board_rev_type since it's an ABI for scripts */
|
||||
snprintf(s, sizeof(s), "0x%X", rev_type);
|
||||
|
Reference in New Issue
Block a user