From patchwork Tue Aug 9 16:34:19 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johan Hovold X-Patchwork-Id: 1050362 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.4) with ESMTP id p79GYeKO000514 for ; Tue, 9 Aug 2011 16:34:40 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753866Ab1HIQej (ORCPT ); Tue, 9 Aug 2011 12:34:39 -0400 Received: from mail-fx0-f46.google.com ([209.85.161.46]:45654 "EHLO mail-fx0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752673Ab1HIQej (ORCPT ); Tue, 9 Aug 2011 12:34:39 -0400 Received: by fxh19 with SMTP id 19so192442fxh.19 for ; Tue, 09 Aug 2011 09:34:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer; bh=GFqzx5rDbUmVkRZrSRDu6exX3hvH/4/BT3/I8nBGEtQ=; b=DHkytb488ZfYbvehyRx4FMB1Jq7zJ7qcS+DC1Fw5BanpMOs/XX7opA85NAps3DPepd T3W3CY/KqEPiJglVoUI9ztHbf4DdhTZnaDp+lCtnAjLmavkwSTV1PtvoajZWCW2oW7TA iZuG8dITRG/WDi4CqOIt6A9jQ8Jxpx+7/25C8= Received: by 10.223.149.199 with SMTP id u7mr2517783fav.129.1312907677794; Tue, 09 Aug 2011 09:34:37 -0700 (PDT) Received: from xi ([83.249.240.82]) by mx.google.com with ESMTPS id l22sm61692fam.37.2011.08.09.09.34.36 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 09 Aug 2011 09:34:37 -0700 (PDT) Received: from johan by xi with local (Exim 4.76) (envelope-from ) id 1QqpGF-0006NR-2b; Tue, 09 Aug 2011 18:34:35 +0200 From: Johan Hovold To: Tony Lindgren Cc: Kevin Hilman , linux-omap@vger.kernel.org, Johan Hovold Subject: [PATCH 1/3] OMAP2+: pm: fix typos Date: Tue, 9 Aug 2011 18:34:19 +0200 Message-Id: <1312907661-24436-1-git-send-email-jhovold@gmail.com> X-Mailer: git-send-email 1.7.6 Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.6 (demeter1.kernel.org [140.211.167.41]); Tue, 09 Aug 2011 16:34:44 +0000 (UTC) Fix typos in comment and error message. Signed-off-by: Johan Hovold --- arch/arm/mach-omap2/pm.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-omap2/pm.c b/arch/arm/mach-omap2/pm.c index 3feb359..fd77cf4 100644 --- a/arch/arm/mach-omap2/pm.c +++ b/arch/arm/mach-omap2/pm.c @@ -163,11 +163,11 @@ err: } /* - * This API is to be called during init to put the various voltage + * This API is to be called during init to set the various voltage * domains to the voltage as per the opp table. Typically we boot up * at the nominal voltage. So this function finds out the rate of * the clock associated with the voltage domain, finds out the correct - * opp entry and puts the voltage domain to the voltage specifies + * opp entry and sets the voltage domain to the voltage specified * in the opp entry */ static int __init omap2_set_init_voltage(char *vdd_name, char *clk_name, @@ -218,7 +218,7 @@ static int __init omap2_set_init_voltage(char *vdd_name, char *clk_name, return 0; exit: - printk(KERN_ERR "%s: Unable to put vdd_%s to its init voltage\n\n", + printk(KERN_ERR "%s: Unable to set vdd_%s to its init voltage\n\n", __func__, vdd_name); return -EINVAL; }