Skip to content

Commit a875640

Browse files
tobluxkrzk
authored andcommitted
mux: mmio: Add missing word in error message
s/failed allocate/failed to allocate/ Signed-off-by: Thorsten Blum <thorsten.blum@linux.dev> Link: https://lore.kernel.org/r/20250316135857.1584-2-thorsten.blum@linux.dev Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
1 parent 0af2f6b commit a875640

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/mux/mmio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ static int mux_mmio_probe(struct platform_device *pdev)
107107
fields[i] = devm_regmap_field_alloc(dev, regmap, field);
108108
if (IS_ERR(fields[i])) {
109109
ret = PTR_ERR(fields[i]);
110-
dev_err(dev, "bitfield %d: failed allocate: %d\n",
110+
dev_err(dev, "bitfield %d: failed to allocate: %d\n",
111111
i, ret);
112112
return ret;
113113
}

0 commit comments

Comments
 (0)