]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
soc: fsl: cpm1: qmc: Fix 'transmiter' typo
authorHerve Codina <herve.codina@bootlin.com>
Thu, 8 Aug 2024 07:11:14 +0000 (09:11 +0200)
committerChristophe Leroy <christophe.leroy@csgroup.eu>
Tue, 3 Sep 2024 05:49:19 +0000 (07:49 +0200)
checkpatch.pl raises the following issue
  CHECK: 'transmiter' may be misspelled - perhaps 'transmitter'?

Indeed, fix it.

Signed-off-by: Herve Codina <herve.codina@bootlin.com>
Reviewed-by: Christophe Leroy <christophe.leroy@csgroup.eu>
Link: https://lore.kernel.org/r/20240808071132.149251-22-herve.codina@bootlin.com
Signed-off-by: Christophe Leroy <christophe.leroy@csgroup.eu>
drivers/soc/fsl/qe/qmc.c

index 04466e73530229a1c5412f19d67fba5f4fe2fd37..2d54d7400d2dd25d5a586699748e2ca9b4849eda 100644 (file)
@@ -1715,7 +1715,7 @@ static int qmc_probe(struct platform_device *pdev)
        if (ret < 0)
                goto err_disable_intr;
 
-       /* Enable transmiter and receiver */
+       /* Enable transmitter and receiver */
        qmc_setbits32(qmc->scc_regs + SCC_GSMRL, SCC_GSMRL_ENR | SCC_GSMRL_ENT);
 
        platform_set_drvdata(pdev, qmc);
@@ -1742,7 +1742,7 @@ static void qmc_remove(struct platform_device *pdev)
 {
        struct qmc *qmc = platform_get_drvdata(pdev);
 
-       /* Disable transmiter and receiver */
+       /* Disable transmitter and receiver */
        qmc_setbits32(qmc->scc_regs + SCC_GSMRL, 0);
 
        /* Disable interrupts */