summaryrefslogtreecommitdiffstats
path: root/drivers/mfd
diff options
context:
space:
mode:
authorLee Jones <lee@kernel.org>2023-01-09 17:26:36 +0000
committerLee Jones <lee@kernel.org>2023-02-22 08:25:52 +0000
commit81435ed2bdea54bef20a898827b127d8ce087495 (patch)
tree567e9c7052c1a35a8c0d63536fe9f0387d5df561 /drivers/mfd
parent1b1305e95e85624f538ec56db9acf88e2d3d7397 (diff)
downloadlinux-81435ed2bdea54bef20a898827b127d8ce087495.tar.gz
linux-81435ed2bdea54bef20a898827b127d8ce087495.tar.bz2
linux-81435ed2bdea54bef20a898827b127d8ce087495.zip
mfd: simple-mfd-i2c: Fix incoherent comment regarding DT registration
Signed-off-by: Lee Jones <lee@kernel.org>
Diffstat (limited to 'drivers/mfd')
-rw-r--r--drivers/mfd/simple-mfd-i2c.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mfd/simple-mfd-i2c.c b/drivers/mfd/simple-mfd-i2c.c
index f4c8fc3ee463..e31f13fd6a79 100644
--- a/drivers/mfd/simple-mfd-i2c.c
+++ b/drivers/mfd/simple-mfd-i2c.c
@@ -48,7 +48,7 @@ static int simple_mfd_i2c_probe(struct i2c_client *i2c)
if (IS_ERR(regmap))
return PTR_ERR(regmap);
- /* If no MFD cells are spedified, use register the DT child nodes instead */
+ /* If no MFD cells are specified, register using the DT child nodes instead */
if (!simple_mfd_data || !simple_mfd_data->mfd_cell)
return devm_of_platform_populate(&i2c->dev);