diff options
| author | Linus Walleij <linusw@kernel.org> | 2026-02-10 19:02:29 +0300 |
|---|---|---|
| committer | Linus Walleij <linusw@kernel.org> | 2026-02-23 13:15:32 +0300 |
| commit | 38e8cc1c79385c6317f3416519d8beff481c175b (patch) | |
| tree | c7b75b891216ea505cdfad542e19dca4f56e89b3 | |
| parent | 1c5986eefde922cccaa9f74567ddf4cf468d8400 (diff) | |
| download | linux-38e8cc1c79385c6317f3416519d8beff481c175b.tar.xz | |
pinctrl: Fix spelling problem
The grammar is off. This fixes it.
Fixes: 6e4f3db8dfcf ("pinctrl: just return if no valid maps")
Reviewed-by: Bartosz Golaszewski <bartosz.golaszewski@oss.qualcomm.com>
Signed-off-by: Linus Walleij <linusw@kernel.org>
| -rw-r--r-- | drivers/pinctrl/devicetree.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/devicetree.c b/drivers/pinctrl/devicetree.c index d0c3e26409a8..02a271dd292f 100644 --- a/drivers/pinctrl/devicetree.c +++ b/drivers/pinctrl/devicetree.c @@ -175,7 +175,7 @@ static int dt_to_map_one_config(struct pinctrl *p, * return. */ dev_info(p->dev, - "there is not valid maps for state %s\n", statename); + "there are no valid maps for state %s\n", statename); return 0; } |
