mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 03:24:45 +01:00
ASoC: realtek: fix misspelling of "minimum" in comments
Fix the typo "miniumum" -> "minimum" in comments in rt5659, rt5665,
rt5668, and rt5682-i2c codec drivers.
This typo is already listed in scripts/spelling.txt by commit
8c32002657 ("scripts/spelling.txt: add several more common spelling
mistakes").
Suggested-by: Cryolitia PukNgae <cryolitia@uniontech.com>
Signed-off-by: Runrun Liu <liurunrun@uniontech.com>
Link: https://patch.msgid.link/3D20FA99934F2891+20260119025302.1288888-1-liurunrun@uniontech.com
Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
7a3d1b04d9
commit
a18467a50e
4 changed files with 4 additions and 4 deletions
|
|
@ -4118,7 +4118,7 @@ static int rt5659_i2c_probe(struct i2c_client *i2c)
|
|||
rt5659->gpiod_reset = devm_gpiod_get_optional(&i2c->dev, "reset",
|
||||
GPIOD_OUT_HIGH);
|
||||
|
||||
/* Sleep for 300 ms miniumum */
|
||||
/* Sleep for 300 ms minimum */
|
||||
msleep(300);
|
||||
|
||||
rt5659->regmap = devm_regmap_init_i2c(i2c, &rt5659_regmap);
|
||||
|
|
|
|||
|
|
@ -4688,7 +4688,7 @@ static int rt5665_i2c_probe(struct i2c_client *i2c)
|
|||
return PTR_ERR(rt5665->gpiod_ldo1_en);
|
||||
}
|
||||
|
||||
/* Sleep for 300 ms miniumum */
|
||||
/* Sleep for 300 ms minimum */
|
||||
usleep_range(300000, 350000);
|
||||
|
||||
rt5665->regmap = devm_regmap_init_i2c(i2c, &rt5665_regmap);
|
||||
|
|
|
|||
|
|
@ -2458,7 +2458,7 @@ static int rt5668_i2c_probe(struct i2c_client *i2c)
|
|||
return PTR_ERR(rt5668->ldo1_en);
|
||||
}
|
||||
|
||||
/* Sleep for 300 ms miniumum */
|
||||
/* Sleep for 300 ms minimum */
|
||||
usleep_range(300000, 350000);
|
||||
|
||||
regmap_write(rt5668->regmap, RT5668_I2C_MODE, 0x1);
|
||||
|
|
|
|||
|
|
@ -173,7 +173,7 @@ static int rt5682_i2c_probe(struct i2c_client *i2c)
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
/* Sleep for 300 ms miniumum */
|
||||
/* Sleep for 300 ms minimum */
|
||||
usleep_range(300000, 350000);
|
||||
|
||||
regmap_write(rt5682->regmap, RT5682_I2C_MODE, 0x1);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue