Skip to content

Commit c06ae98

Browse files
committed
boardinfo: Modify the board version display.
Change-Id: I7f1133b2a5e6bb97fc1ba52210782d39e1a8ea28
1 parent fa065ff commit c06ae98

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

drivers/boardinfo/boardinfo.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ static int ver_show(struct seq_file *m, void *v)
2828
hwid = (id2 << 2) + (id1 << 1) + id0;
2929

3030
if (hwid == 0)
31-
boardver = "0";
31+
boardver = "1.00";
3232
else if (hwid == 1)
33-
boardver = "1";
33+
boardver = "1.01";
3434
else if (hwid == 2)
35-
boardver = "2";
35+
boardver = "1.02";
3636
else if (hwid == 3)
37-
boardver = "3";
37+
boardver = "1.03";
3838
else
3939
boardver = "unknown";
4040

0 commit comments

Comments
 (0)