From patchwork Tue Aug 30 16:48:16 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Johan Hovold X-Patchwork-Id: 1113442 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter2.kernel.org (8.14.4/8.14.4) with ESMTP id p7UGml34032345 for ; Tue, 30 Aug 2011 16:48:48 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752546Ab1H3Qsq (ORCPT ); Tue, 30 Aug 2011 12:48:46 -0400 Received: from mail-bw0-f46.google.com ([209.85.214.46]:65364 "EHLO mail-bw0-f46.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752258Ab1H3Qsq (ORCPT ); Tue, 30 Aug 2011 12:48:46 -0400 Received: by bke11 with SMTP id 11so5204748bke.19 for ; Tue, 30 Aug 2011 09:48:45 -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:in-reply-to:references; bh=GFqzx5rDbUmVkRZrSRDu6exX3hvH/4/BT3/I8nBGEtQ=; b=d1RN5/pqUl7FG8BmmilVwFHvDv4pnIgb+WzTIhG6HyB7sj/WcJ9ze/ev8+V2EJTG9I VRexOtRcie+ftRkCqftIE0i9Ffp502argt2L35bW0/5pN/ocu/QQWDAuDcUVgNNFd9G1 8oZNWEjbkgSA6s0T7V4Fqem38cs9obbhRYcPY= Received: by 10.204.136.136 with SMTP id r8mr239704bkt.298.1314722924950; Tue, 30 Aug 2011 09:48:44 -0700 (PDT) Received: from xi (c83-249-240-82.bredband.comhem.se [83.249.240.82]) by mx.google.com with ESMTPS id y3sm71230bkw.16.2011.08.30.09.48.43 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 30 Aug 2011 09:48:43 -0700 (PDT) Received: from johan by xi with local (Exim 4.76) (envelope-from ) id 1QyRUQ-0006X4-07; Tue, 30 Aug 2011 18:48:42 +0200 From: Johan Hovold To: Kevin Hilman Cc: Tony Lindgren , linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Johan Hovold Subject: [PATCH 1/2 RESEND] OMAP2+: pm: fix typos Date: Tue, 30 Aug 2011 18:48:16 +0200 Message-Id: <1314722897-25040-1-git-send-email-jhovold@gmail.com> X-Mailer: git-send-email 1.7.6 In-Reply-To: <87r543rkdk.fsf@ti.com> References: <87r543rkdk.fsf@ti.com> 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 (demeter2.kernel.org [140.211.167.43]); Tue, 30 Aug 2011 16:48:48 +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; }