git.openpandora.org
/
pandora-u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ac046ad
)
board: phytec: common: Fix missing newline in error message
author
Wadim Egorov
<w.egorov@phytec.de>
Fri, 19 Sep 2025 06:39:48 +0000
(08:39 +0200)
committer
Tom Rini
<trini@konsulko.com>
Wed, 24 Sep 2025 13:50:13 +0000
(07:50 -0600)
The error message in phytec_get_product_name() was missing a newline,
causing log output to be concatenated with subsequent messages. Add
the newline to improve readability.
Signed-off-by: Wadim Egorov <w.egorov@phytec.de>
board/phytec/common/phytec_som_detection.c
patch
|
blob
|
history
diff --git
a/board/phytec/common/phytec_som_detection.c
b/board/phytec/common/phytec_som_detection.c
index
4d7c9b9
..
136f448
100644
(file)
--- a/
board/phytec/common/phytec_som_detection.c
+++ b/
board/phytec/common/phytec_som_detection.c
@@
-309,7
+309,7
@@
static int phytec_get_product_name(struct phytec_eeprom_data *data,
som_type = 1;
break;
default:
- pr_err("%s: Invalid SOM type: %i", __func__, api2->som_type);
+ pr_err("%s: Invalid SOM type: %i
\n
", __func__, api2->som_type);
return -EINVAL;
};