]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
ASoC: realtek: fix misspelling of "minimum" in comments
authorRunrun Liu <liurunrun@uniontech.com>
Mon, 19 Jan 2026 02:53:02 +0000 (10:53 +0800)
committerMark Brown <broonie@kernel.org>
Mon, 19 Jan 2026 14:42:21 +0000 (14:42 +0000)
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
8c3200265787 ("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>
sound/soc/codecs/rt5659.c
sound/soc/codecs/rt5665.c
sound/soc/codecs/rt5668.c
sound/soc/codecs/rt5682-i2c.c

index f5957470652c8eff2f94ca5a478bfde64bd15a46..3590ebd41c27e130752c59ad0b8e3d99b261329a 100644 (file)
@@ -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);
index c7beccd54b162e2d8a0c26ae0abbf7095614337e..38fb3a277e26d378230f77aa46d5132578d179f8 100644 (file)
@@ -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);
index 5fcdb50d5184a2e593ff9772d49d7f9362433a3c..c551696ae11aa7c5c57cf77460d3b0c13653cb05 100644 (file)
@@ -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);
index bba987308e155508e0d94b30e82dc38911b8b005..e556a365adc81dcb96cc8397b32d1623be2cd49c 100644 (file)
@@ -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);