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

ALSA: es18xx: Fix spelling mistake "grap" -> "grab"

There are spelling mistakes in dev_err messages. Fix them.

Signed-off-by: Colin Ian King <colin.i.king@gmail.com>
Link: https://patch.msgid.link/20250228083631.676877-1-colin.i.king@gmail.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>

authored by

Colin Ian King and committed by
Takashi Iwai
7fa25e87 08056455

+4 -4
+4 -4
sound/isa/es18xx.c
··· 1735 1735 chip->active = 0; 1736 1736 1737 1737 if (!devm_request_region(card->dev, port, 16, "ES18xx")) { 1738 - dev_err(card->dev, "unable to grap ports 0x%lx-0x%lx\n", port, port + 16 - 1); 1738 + dev_err(card->dev, "unable to grab ports 0x%lx-0x%lx\n", port, port + 16 - 1); 1739 1739 return -EBUSY; 1740 1740 } 1741 1741 1742 1742 if (devm_request_irq(card->dev, irq, snd_es18xx_interrupt, 0, "ES18xx", 1743 1743 (void *) card)) { 1744 - dev_err(card->dev, "unable to grap IRQ %d\n", irq); 1744 + dev_err(card->dev, "unable to grab IRQ %d\n", irq); 1745 1745 return -EBUSY; 1746 1746 } 1747 1747 chip->irq = irq; 1748 1748 card->sync_irq = chip->irq; 1749 1749 1750 1750 if (snd_devm_request_dma(card->dev, dma1, "ES18xx DMA 1")) { 1751 - dev_err(card->dev, "unable to grap DMA1 %d\n", dma1); 1751 + dev_err(card->dev, "unable to grab DMA1 %d\n", dma1); 1752 1752 return -EBUSY; 1753 1753 } 1754 1754 chip->dma1 = dma1; 1755 1755 1756 1756 if (dma2 != dma1 && 1757 1757 snd_devm_request_dma(card->dev, dma2, "ES18xx DMA 2")) { 1758 - dev_err(card->dev, "unable to grap DMA2 %d\n", dma2); 1758 + dev_err(card->dev, "unable to grab DMA2 %d\n", dma2); 1759 1759 return -EBUSY; 1760 1760 } 1761 1761 chip->dma2 = dma2;