Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ASoC: rt5640: fix typos

I noticed typos and i fixed them.

Signed-off-by: Senhong Liu <liusenhong2022@email.szu.edu.cn>
Link: https://lore.kernel.org/r/20230819133345.39961-1-liusenhong2022@email.szu.edu.cn
Signed-off-by: Mark Brown <broonie@kernel.org>

authored by

Senhong Liu and committed by
Mark Brown
8e665715 f7da8800

+2 -2
+2 -2
sound/soc/codecs/rt5640.c
··· 2570 2570 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT, 2571 2571 "rt5640", rt5640); 2572 2572 if (ret) { 2573 - dev_warn(component->dev, "Failed to reguest IRQ %d: %d\n", rt5640->irq, ret); 2573 + dev_warn(component->dev, "Failed to request IRQ %d: %d\n", rt5640->irq, ret); 2574 2574 rt5640_disable_jack_detect(component); 2575 2575 return; 2576 2576 } ··· 2625 2625 NULL, rt5640_irq, IRQF_TRIGGER_RISING | IRQF_ONESHOT, 2626 2626 "rt5640", rt5640); 2627 2627 if (ret) { 2628 - dev_warn(component->dev, "Failed to reguest IRQ %d: %d\n", rt5640->irq, ret); 2628 + dev_warn(component->dev, "Failed to request IRQ %d: %d\n", rt5640->irq, ret); 2629 2629 rt5640->irq = -ENXIO; 2630 2630 return; 2631 2631 }