1
0
mirror of https://xff.cz/git/u-boot/ synced 2026-01-23 18:05:21 +01:00

cmd/sbi: format RustSBI version number

The SBI command can print out the version number of the SBI implementation.
Choose the correct output format for RustSBI.

Signed-off-by: Heinrich Schuchardt <heinrich.schuchardt@canonical.com>
Reviewed-by: Rick Chen <rick@andestech.com>
This commit is contained in:
Heinrich Schuchardt
2022-10-04 10:09:52 +02:00
committed by Leo Yu-Chi Liang
parent 3724ddf157
commit 9487764e7e

View File

@@ -74,6 +74,7 @@ static int do_sbi(struct cmd_tbl *cmdtp, int flag, int argc,
vers >> 16, vers & 0xffff);
break;
case 3: /* KVM */
case 4: /* RustSBI */
printf("%ld.%ld.%ld",
vers >> 16,
(vers >> 8) & 0xff,