diff options
| author | Hemanth Selam <hemanth.selam@gmail.com> | 2026-09-07 14:42:12 +0530 |
|---|---|---|
| committer | Sebastian Reichel <sebastian.reichel@collabora.com> | 2026-09-10 00:43:05 +0200 |
| commit | fbbfe77eb37ad1de7912c63a6adfe1b09a14670b (patch) | |
| tree | 5c6ab6c4cceb7e050b0afd2a0c404c4d5071388e | |
| parent | ece9baab2a6e79224d3f591893be23b540b1625f (diff) | |
| download | linux-next-fbbfe77eb37ad1de7912c63a6adfe1b09a14670b.tar.gz linux-next-fbbfe77eb37ad1de7912c63a6adfe1b09a14670b.zip | |
power: reset: keystone: fix missing space in error message
The two string literals are concatenated, so the message prints
"has to contain atleast one entry".
Assisted-by: LLM
Signed-off-by: Hemanth Selam <hemanth.selam@gmail.com>
Link: https://patch.msgid.link/20260907091212.28352-1-hemanth.selam@gmail.com
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
| -rw-r--r-- | drivers/power/reset/keystone-reset.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/power/reset/keystone-reset.c b/drivers/power/reset/keystone-reset.c index 3c44cd6cee0a..491ba490b8ea 100644 --- a/drivers/power/reset/keystone-reset.c +++ b/drivers/power/reset/keystone-reset.c @@ -112,8 +112,7 @@ static int rsctrl_probe(struct platform_device *pdev) for (i = 0; i < WDT_MUX_NUMBER; i++) { ret = of_property_read_u32_index(np, "ti,wdt-list", i, &val); if (ret == -EOVERFLOW && !i) { - dev_err(dev, "ti,wdt-list property has to contain at" - "least one entry\n"); + dev_err(dev, "ti,wdt-list property has to contain at least one entry\n"); return -EINVAL; } else if (ret) { break; |
