mirror of https://github.com/torvalds/linux.git
regulator: fp9931: Fix spelling mistake "failid" -> "failed"
There is a spelling mistake in a dev_err_probe message. Fix it. Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Link: https://patch.msgid.link/20251128173330.318309-1-colin.i.king@gmail.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
0cc15a10c3
commit
81d431130a
|
|
@ -444,7 +444,7 @@ static int fp9931_probe(struct i2c_client *client)
|
|||
data->vin_reg = devm_regulator_get_optional(&client->dev, "vin");
|
||||
if (IS_ERR(data->vin_reg))
|
||||
return dev_err_probe(&client->dev, PTR_ERR(data->vin_reg),
|
||||
"failid to get vin regulator\n");
|
||||
"failed to get vin regulator\n");
|
||||
|
||||
data->pgood_gpio = devm_gpiod_get(&client->dev, "pg", GPIOD_IN);
|
||||
if (IS_ERR(data->pgood_gpio))
|
||||
|
|
|
|||
Loading…
Reference in New Issue