From patchwork Thu Oct 25 17:35:01 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Kevin Hilman X-Patchwork-Id: 1646161 Return-Path: X-Original-To: patchwork-linux-arm@patchwork.kernel.org Delivered-To: patchwork-process-083081@patchwork1.kernel.org Received: from merlin.infradead.org (merlin.infradead.org [205.233.59.134]) by patchwork1.kernel.org (Postfix) with ESMTP id C35B73FE1C for ; Thu, 25 Oct 2012 17:37: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 1TRRKq-000683-TM; Thu, 25 Oct 2012 17:35:12 +0000 Received: from mail-da0-f49.google.com ([209.85.210.49]) by merlin.infradead.org with esmtps (Exim 4.76 #1 (Red Hat Linux)) id 1TRRKm-00067p-Me for linux-arm-kernel@lists.infradead.org; Thu, 25 Oct 2012 17:35:09 +0000 Received: by mail-da0-f49.google.com with SMTP id q27so823090daj.36 for ; Thu, 25 Oct 2012 10:35:03 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=from:to:cc:subject:date:message-id:x-mailer:x-gm-message-state; bh=EKqK2BOXAyrWjFkQWgQL6CKYj7YVryt1huUAp68yaqg=; b=kDLtUuCF+Ltg/5H7t/Tn/HSN+xw7EWxHdgX8X9jtAWJse6S2cUD0obkmWwwEvtaswZ /WMUyB/6zp7pl+l25XAMykSkalqvOQFyUJNmUayeSdqYqAqmwhaQdv46LwjiAAEd43Pi kDoy/kWPJEybVUTisIbiXr1v8snp6Mk072eVIi80fk6gRpavBsBBdayABHIgFHH3FSBY ODnb9Iv6UMTyTKPv6qn1QwAovMsN9N5q4VwEC3xF6H8m3WfirVOHQxu8k72O8xdoH8xV HWnQqEm5vAIzzN9hlOuHl8yQ6fhq3K+ElAAIOQTCAuOp9W6hZb0ZwuvcnVyFWejykDXH n1aQ== Received: by 10.66.85.8 with SMTP id d8mr55201780paz.30.1351186503484; Thu, 25 Oct 2012 10:35:03 -0700 (PDT) Received: from localhost (c-24-19-7-36.hsd1.wa.comcast.net. [24.19.7.36]) by mx.google.com with ESMTPS id ho7sm11518589pbc.3.2012.10.25.10.35.02 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 25 Oct 2012 10:35:02 -0700 (PDT) From: Kevin Hilman To: Tony Lindgren , Russell King , linux-omap@vger.kernel.org Subject: [PATCH] ARM: OMAP2+: PM: add missing newline to VC warning message Date: Thu, 25 Oct 2012 10:35:01 -0700 Message-Id: <1351186501-32223-1-git-send-email-khilman@deeprootsystems.com> X-Mailer: git-send-email 1.8.0 X-Gm-Message-State: ALoCoQn5FOglsN8lyEUm12zhH14YfOQ3TnrsM7XdA/jYYwPo2/PJSSWkCHTL7hlRKafcsNAvxQsz X-Spam-Note: CRM114 invocation failed X-Spam-Score: -2.6 (--) X-Spam-Report: SpamAssassin version 3.3.2 on merlin.infradead.org summary: Content analysis details: (-2.6 points) pts rule name description ---- ---------------------- -------------------------------------------------- -0.7 RCVD_IN_DNSWL_LOW RBL: Sender listed at http://www.dnswl.org/, low trust [209.85.210.49 listed in list.dnswl.org] -1.9 BAYES_00 BODY: Bayes spam probability is 0 to 1% [score: 0.0000] Cc: 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: Kevin Hilman Add missing newline to warning message to avoid annoying wrapping problems during kernel boot like this one: omap_vc_i2c_init: I2C config for vdd_iva does not match other channels (0). omap_vc_i2c_init: I2C config for vdd_mpu does not match other channels (0).Power Management for TI OMAP4. Reported-by: Russell King Signed-off-by: Kevin Hilman --- arch/arm/mach-omap2/vc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/mach-omap2/vc.c b/arch/arm/mach-omap2/vc.c index 880249b..75878c3 100644 --- a/arch/arm/mach-omap2/vc.c +++ b/arch/arm/mach-omap2/vc.c @@ -264,7 +264,7 @@ static void __init omap_vc_i2c_init(struct voltagedomain *voltdm) if (initialized) { if (voltdm->pmic->i2c_high_speed != i2c_high_speed) - pr_warn("%s: I2C config for vdd_%s does not match other channels (%u).", + pr_warn("%s: I2C config for vdd_%s does not match other channels (%u).\n", __func__, voltdm->name, i2c_high_speed); return; }