From patchwork Fri Aug 10 04:42:09 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sachin Kamat X-Patchwork-Id: 10663 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 8A80423E57 for ; Fri, 10 Aug 2012 04:43:46 +0000 (UTC) Received: from mail-ob0-f180.google.com (mail-ob0-f180.google.com [209.85.214.180]) by fiordland.canonical.com (Postfix) with ESMTP id 3B1CAA187E8 for ; Fri, 10 Aug 2012 04:43:46 +0000 (UTC) Received: by obceq6 with SMTP id eq6so390896obc.11 for ; Thu, 09 Aug 2012 21:43:45 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=20120113; h=x-forwarded-to:x-forwarded-for:delivered-to:received-spf:from:to:cc :subject:date:message-id:x-mailer:x-gm-message-state; bh=EOQpiZHGUfxjYUEoLiTWrLx13la1OvKB1B01PRidk5o=; b=LZk3qNMkdFy1E9zEpiQLQq7gsTKYXJ+IVWAkLsdOMV0i6zUyaiMkWtc2y2DQtL7xuG habYfsNrphKpjm5JCjZ9vwt6ZbwsUt6AKpg7rgw1qrW0BvNxGb+yDL82y6IU0s+1stWy 78JRsP86B5vrzDW9YLuXyUIUn+X/kddefUsH00lsGy/20Nd6cBGJqidxjekf4IrhZtsr fBXPWlu/qWDQC1Aa4vdthxCPGQITaxcuYpo7/8RXYcawp/8xMCwR13kyc6wwQPD8vEh+ i0x54j7DkEXRBJgpGRE8QRax6ZyJwwyeqOlgyzFqzUk3jWXTxXqRs9JoQ69oDG/5TzAv 4DOQ== Received: by 10.50.181.136 with SMTP id dw8mr635305igc.31.1344573825012; Thu, 09 Aug 2012 21:43:45 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.50.184.200 with SMTP id ew8csp41567igc; Thu, 9 Aug 2012 21:43:44 -0700 (PDT) Received: by 10.68.237.74 with SMTP id va10mr9458864pbc.46.1344573824104; Thu, 09 Aug 2012 21:43:44 -0700 (PDT) Received: from mail-pb0-f50.google.com (mail-pb0-f50.google.com [209.85.160.50]) by mx.google.com with ESMTPS id px5si6356752pbb.82.2012.08.09.21.43.43 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 09 Aug 2012 21:43:44 -0700 (PDT) Received-SPF: neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) client-ip=209.85.160.50; Authentication-Results: mx.google.com; spf=neutral (google.com: 209.85.160.50 is neither permitted nor denied by best guess record for domain of sachin.kamat@linaro.org) smtp.mail=sachin.kamat@linaro.org Received: by pbcmd12 with SMTP id md12so2314562pbc.37 for ; Thu, 09 Aug 2012 21:43:43 -0700 (PDT) Received: by 10.68.226.193 with SMTP id ru1mr9179471pbc.157.1344573823574; Thu, 09 Aug 2012 21:43:43 -0700 (PDT) Received: from localhost.localdomain ([115.113.119.130]) by mx.google.com with ESMTPS id nv6sm2527383pbc.42.2012.08.09.21.43.40 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 09 Aug 2012 21:43:43 -0700 (PDT) From: Sachin Kamat To: linux-kernel@vger.kernel.org Cc: thierry.reding@avionic-design.de, sachin.kamat@linaro.org, patches@linaro.org Subject: [PATCH 1/2] pwm: vt8500: Fix coding style issue Date: Fri, 10 Aug 2012 10:12:09 +0530 Message-Id: <1344573730-21907-1-git-send-email-sachin.kamat@linaro.org> X-Mailer: git-send-email 1.7.4.1 X-Gm-Message-State: ALoCoQniOfCg+qxEvjFiYY0YlbL2CXUVBcRvZaE88tiUO9VuTRvUJe15glHgF6lQUXIKDa8rW0No Fixes the following: WARNING: Prefer pr_warn(... to pr_warning(... pr_warning("Waiting for status bits 0x%x to clear timed out\n", Signed-off-by: Sachin Kamat --- drivers/pwm/pwm-vt8500.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/pwm/pwm-vt8500.c b/drivers/pwm/pwm-vt8500.c index 5480214..ad14389 100644 --- a/drivers/pwm/pwm-vt8500.c +++ b/drivers/pwm/pwm-vt8500.c @@ -41,7 +41,7 @@ static inline void pwm_busy_wait(void __iomem *reg, u8 bitmask) cpu_relax(); if (unlikely(!loops)) - pr_warning("Waiting for status bits 0x%x to clear timed out\n", + pr_warn("Waiting for status bits 0x%x to clear timed out\n", bitmask); }