From patchwork Fri Mar 18 10:37:17 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Julia Lawall X-Patchwork-Id: 12785157 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 16F0BC433EF for ; Fri, 18 Mar 2022 10:44:50 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:Cc :To:From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=pPZfv/Q7JBhQ0Lq4qkY9mVfeocf3Y9+Vx4JEzpK+rSo=; b=nLFxtWWM8ajcKi I6vBfJ94FbaLW+tx7sDy5UQiY+lMjYmohkO6V8oxdyi5qRRv62XHxCKi3ec4trjX8Li6Ecv7ENLmq K1IR3GvYjQ0DVzDYqKEsd1QszwRQpBBSMHHA4hkMkT7iuKeYrCQXPTN5IvLiHjF9RzRbTv+4Bj1/7 p84kS600fC3Wo7gXUzmaf7+Re3zORm/zMCfaoSDGzTuPhqWOe/E07L7z680UmWZFjXgOTt+Wp4pQL KRNPZGl9n3QZblqGroEQjemvzgv0Qe9ugJmuEz5CiSIx7p35njUeK5Ge3zhi6v02LuSGs5mbWq1XT hafGvl4337JeGINXpdFw==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1nVA4r-001CfA-Bs; Fri, 18 Mar 2022 10:43:25 +0000 Received: from mail3-relais-sop.national.inria.fr ([192.134.164.104]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1nV9zS-0019jL-NB for linux-arm-kernel@lists.infradead.org; Fri, 18 Mar 2022 10:37:52 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=inria.fr; s=dc; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=Ozx1tw3XxjRE3xzrnLv53rTzYlVWrfmUPszMI7i3uqc=; b=BHnOWWlNS04xk2vAs0ptVaMHqTKt8oumakhflciMGxMBIBmQ4NMqIT7R gsUHNam/QMYoRD9z3CJBrohWuuIiwxZekvv65Vtb7qv3wTX8IN8DigwiC OEleiM4yJ+9EADlAZyey4hP8/UCOF09kSY0qSSx6iz6bBpKVQxh9LDqvu o=; Authentication-Results: mail3-relais-sop.national.inria.fr; dkim=none (message not signed) header.i=none; spf=SoftFail smtp.mailfrom=Julia.Lawall@inria.fr; dmarc=fail (p=none dis=none) d=inria.fr X-IronPort-AV: E=Sophos;i="5.90,192,1643670000"; d="scan'208";a="8935658" Received: from i80.paris.inria.fr (HELO i80.paris.inria.fr.) ([128.93.90.48]) by mail3-relais-sop.national.inria.fr with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Mar 2022 11:37:38 +0100 From: Julia Lawall To: Sekhar Nori Cc: kernel-janitors@vger.kernel.org, Bartosz Golaszewski , Russell King , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [PATCH] ARM: davinci: fix typos in comments Date: Fri, 18 Mar 2022 11:37:17 +0100 Message-Id: <20220318103729.157574-22-Julia.Lawall@inria.fr> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20220318_033751_085747_5734AFD6 X-CRM114-Status: GOOD ( 17.02 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org Various spelling mistakes in comments. Detected with the help of Coccinelle. Signed-off-by: Julia Lawall Reviewed-by: Bartosz Golaszewski --- arch/arm/mach-davinci/board-dm355-evm.c | 4 ++-- arch/arm/mach-davinci/board-dm365-evm.c | 2 +- arch/arm/mach-davinci/board-dm644x-evm.c | 2 +- arch/arm/mach-davinci/devices.c | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/arch/arm/mach-davinci/board-dm355-evm.c b/arch/arm/mach-davinci/board-dm355-evm.c index 3c5a9e3c128a..36983dd73904 100644 --- a/arch/arm/mach-davinci/board-dm355-evm.c +++ b/arch/arm/mach-davinci/board-dm355-evm.c @@ -222,7 +222,7 @@ static struct v4l2_input tvp5146_inputs[] = { /* * this is the route info for connecting each input to decoder - * ouput that goes to vpfe. There is a one to one correspondence + * output that goes to vpfe. There is a one to one correspondence * with tvp5146_inputs */ static struct vpfe_route tvp5146_routes[] = { @@ -295,7 +295,7 @@ static struct vpbe_enc_mode_info dm355evm_enc_preset_timing[] = { #define VENC_STD_ALL (V4L2_STD_NTSC | V4L2_STD_PAL) /* - * The outputs available from VPBE + ecnoders. Keep the + * The outputs available from VPBE + encoders. Keep the * the order same as that of encoders. First those from venc followed by that * from encoders. Index in the output refers to index on a particular encoder. * Driver uses this index to pass it to encoder when it supports more than diff --git a/arch/arm/mach-davinci/board-dm365-evm.c b/arch/arm/mach-davinci/board-dm365-evm.c index b3bef74c982a..21cf356fcd01 100644 --- a/arch/arm/mach-davinci/board-dm365-evm.c +++ b/arch/arm/mach-davinci/board-dm365-evm.c @@ -535,7 +535,7 @@ static struct vpbe_enc_mode_info dm365evm_enc_preset_timing[] = { #define VENC_STD_ALL (V4L2_STD_NTSC | V4L2_STD_PAL) /* - * The outputs available from VPBE + ecnoders. Keep the + * The outputs available from VPBE + encoders. Keep the * the order same as that of encoders. First those from venc followed by that * from encoders. Index in the output refers to index on a particular * encoder.Driver uses this index to pass it to encoder when it supports more diff --git a/arch/arm/mach-davinci/board-dm644x-evm.c b/arch/arm/mach-davinci/board-dm644x-evm.c index cce3a621eb20..1493f4a77e29 100644 --- a/arch/arm/mach-davinci/board-dm644x-evm.c +++ b/arch/arm/mach-davinci/board-dm644x-evm.c @@ -260,7 +260,7 @@ static struct v4l2_input dm644xevm_tvp5146_inputs[] = { /* * this is the route info for connecting each input to decoder - * ouput that goes to vpfe. There is a one to one correspondence + * output that goes to vpfe. There is a one to one correspondence * with tvp5146_inputs */ static struct vpfe_route dm644xevm_tvp5146_routes[] = { diff --git a/arch/arm/mach-davinci/devices.c b/arch/arm/mach-davinci/devices.c index 849e811fade7..781a619af1e1 100644 --- a/arch/arm/mach-davinci/devices.c +++ b/arch/arm/mach-davinci/devices.c @@ -245,7 +245,7 @@ void __init davinci_setup_mmc(int module, struct davinci_mmc_config *config) /* Power-on 3.3V IO cells */ __raw_writel(0, DAVINCI_SYSMOD_VIRT(SYSMOD_VDD3P3VPWDN)); - /*Set up the pull regiter for MMC */ + /*Set up the pull register for MMC */ davinci_cfg_reg(DM644X_MSTK); }