projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0f259fe
)
xilinx: fru: Replace spaces with \0 in detected revision
author
Michal Simek
<michal.simek@amd.com>
Mon, 6 Jun 2022 07:31:27 +0000
(09:31 +0200)
committer
Michal Simek
<michal.simek@amd.com>
Mon, 6 Jun 2022 07:32:26 +0000
(09:32 +0200)
Also fix board revision field where spaces are used instead of \0.
The same change was done for board name by commit
530560b6f8eb
("xilinx:
fru: Replace spaces with \0 in detected name").
Signed-off-by: Michal Simek <michal.simek@amd.com>
Link:
https://lore.kernel.org/r/e069e5134e57899e859786ad8ba48721df6df752.1653911444.git.michal.simek@amd.com
board/xilinx/common/board.c
patch
|
blob
|
history
diff --git
a/board/xilinx/common/board.c
b/board/xilinx/common/board.c
index 5be3090c318632b7c81da47d19cd20595289185a..629a6ee036ffd036c6fb77846e32ddfa637063e7 100644
(file)
--- a/
board/xilinx/common/board.c
+++ b/
board/xilinx/common/board.c
@@
-245,6
+245,10
@@
static int xilinx_read_eeprom_fru(struct udevice *dev, char *name,
}
strncpy(desc->revision, (char *)fru_data.brd.rev,
sizeof(desc->revision));
+ for (i = 0; i < sizeof(desc->revision); i++) {
+ if (desc->revision[i] == ' ')
+ desc->revision[i] = '\0';
+ }
strncpy(desc->serial, (char *)fru_data.brd.serial_number,
sizeof(desc->serial));