diff options
| author | Wadim Egorov <[email protected]> | 2025-09-19 08:39:48 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-09-24 07:50:13 -0600 |
| commit | 96971e5090cd6975023d0556b3d47b195442902e (patch) | |
| tree | a74769d6773ba8f24ea024f0494d39a0e507c5c5 /board/phytec | |
| parent | ac046ad1873cb3d85f4c81c0bed592a4ed7a5903 (diff) | |
board: phytec: common: Fix missing newline in error message
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 <[email protected]>
Diffstat (limited to 'board/phytec')
| -rw-r--r-- | board/phytec/common/phytec_som_detection.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/phytec/common/phytec_som_detection.c b/board/phytec/common/phytec_som_detection.c index 4d7c9b9f80f..136f4486eb0 100644 --- 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; }; |
