From patchwork Sat Oct 20 01:35:28 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Domenico Andreoli X-Patchwork-Id: 1620641 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork2.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork2.kernel.org (Postfix) with ESMTP id 73FB2DF2AB for ; Sat, 20 Oct 2012 01:40:48 +0000 (UTC) Received: from localhost ([::1] helo=merlin.infradead.org) by merlin.infradead.org with esmtp (Exim 4.76 #1 (Red Hat Linux)) id 1TPO10-00027n-Tt; Sat, 20 Oct 2012 01:38:15 +0000 Received: from mail-wg0-f49.google.com ([74.125.82.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TPO0p-00026x-08 for linux-arm-kernel@lists.infradead.org; Sat, 20 Oct 2012 01:38:04 +0000 Received: by mail-wg0-f49.google.com with SMTP id gg4so541010wgb.18 for ; Fri, 19 Oct 2012 18:37:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:user-agent:date:from:to:cc:subject:references :content-disposition; bh=PjmPUV/OII50NX5nYhmR12aw/CImEcoW3T4aPnMWm3E=; b=bthsSpGEXcnyz2scuIJZ2udvogPUhfr9sGCD/DxSCvYhR1v85PgKEHtJF4ZwaETyZ0 OR9/1FnzxfIoGpj0azlZzY0pyGHR5ikODfLWetetmBymCUIaMbxMSDQygrSL48AICSBT egXAmNzC8RM9M3gs8elztezJeuq5QjxhXv+6NpzouvLmAT40G+dw7++P9Y1lTDDI6p8c uLxrJdsmXF/kVLn5K7oq5r8AMJ1uHQ3mjUHWOOOW7Xmsb8O4b0PNtEFKRbVECRXusoD5 7MFgunGkl+b56A2kTSb/evTFeGMb8Q5tPcm2rvbYiioS710OD0oVazrZ0S6zffsQhQwA 4dSw== Received: by 10.216.202.207 with SMTP id d57mr1482787weo.191.1350697079331; Fri, 19 Oct 2012 18:37:59 -0700 (PDT) Received: from raptus.dandreoli.com (178-85-163-250.dynamic.upc.nl. [178.85.163.250]) by mx.google.com with ESMTPS id cu1sm37656404wib.6.2012.10.19.18.37.57 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 19 Oct 2012 18:37:57 -0700 (PDT) Received: by raptus.dandreoli.com (Postfix, from userid 1000) id 623EC2EF88; Sat, 20 Oct 2012 03:37:57 +0200 (CEST) Message-Id: <20121020013757.086330467@gmail.com> User-Agent: quilt/0.60-1 Date: Sat, 20 Oct 2012 03:35:28 +0200 From: Domenico Andreoli To: Stephen Warren Subject: [PATCH 2/2] ARM: bcm2835: Fix typo in the error message References: <20121020013526.829093485@gmail.com> Content-Disposition: inline; filename=arm-bcm2835-fix-typo-in-error-message.patch X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.7 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.7 points) pts rule name description ---- ---------------------- -------------------------------------------------- 0.0 FREEMAIL_FROM Sender email is commonly abused enduser mail provider (cavokz[at]gmail.com) -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [74.125.82.49 listed in list.dnswl.org] -0.0 SPF_PASS SPF: sender matches SPF record -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] -0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from author's domain 0.1 DKIM_SIGNED Message has a DKIM or DK signature, not necessarily valid -0.1 DKIM_VALID Message has at least one valid DKIM or DK signature Cc: Domenico Andreoli , linux-arm-kernel@lists.infradead.org X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: linux-arm-kernel-bounces@lists.infradead.org Errors-To: linux-arm-kernel-bounces+patchwork-linux-arm=patchwork.kernel.org@lists.infradead.org From: Domenico Andreoli Fix typo in message reported when unable to lookup the uart1 clock. Signed-off-by: Domenico Andreoli Cc: Stephen Warren Cc: linux-arm-kernel@lists.infradead.org --- drivers/clk/clk-bcm2835.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: b/drivers/clk/clk-bcm2835.c =================================================================== --- a/drivers/clk/clk-bcm2835.c +++ b/drivers/clk/clk-bcm2835.c @@ -55,5 +55,5 @@ void __init bcm2835_init_clocks(void) pr_err("uart1_pclk not registered\n"); ret = clk_register_clkdev(clk, NULL, "20215000.uart"); if (ret) - pr_err("uart0_pclk alias not registered\n"); + pr_err("uart1_pclk alias not registered\n"); }