From patchwork Fri Jul 8 22:52:32 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Felipe Balbi X-Patchwork-Id: 957612 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 p68MqtrV025192 for ; Fri, 8 Jul 2011 22:53:00 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752318Ab1GHWw7 (ORCPT ); Fri, 8 Jul 2011 18:52:59 -0400 Received: from na3sys009aog113.obsmtp.com ([74.125.149.209]:38532 "EHLO na3sys009aog113.obsmtp.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752296Ab1GHWw7 (ORCPT ); Fri, 8 Jul 2011 18:52:59 -0400 Received: from mail-bw0-f48.google.com ([209.85.214.48]) (using TLSv1) by na3sys009aob113.postini.com ([74.125.148.12]) with SMTP ID DSNKTheKSQUJ2amvZyU+i7T4u+fVWug2ue6k@postini.com; Fri, 08 Jul 2011 15:52:58 PDT Received: by bwb5 with SMTP id 5so909157bwb.7 for ; Fri, 08 Jul 2011 15:52:56 -0700 (PDT) Received: by 10.204.163.193 with SMTP id b1mr581890bky.366.1310165576540; Fri, 08 Jul 2011 15:52:56 -0700 (PDT) Received: from localhost (cs181221225.pp.htv.fi [82.181.221.225]) by mx.google.com with ESMTPS id i8sm383406bke.47.2011.07.08.15.52.54 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 08 Jul 2011 15:52:55 -0700 (PDT) From: Felipe Balbi To: Tony Lindgren Cc: Linux OMAP Mailing List , Felipe Balbi Subject: [PATCH 04/11] cbus: tahvo: don't go over 80 columns Date: Sat, 9 Jul 2011 01:52:32 +0300 Message-Id: <1310165559-31037-5-git-send-email-balbi@ti.com> X-Mailer: git-send-email 1.7.6 In-Reply-To: <1310165559-31037-1-git-send-email-balbi@ti.com> References: <1310165559-31037-1-git-send-email-balbi@ti.com> Organization: Texas Instruments\n 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]); Fri, 08 Jul 2011 22:53:00 +0000 (UTC) cleanup only, no functional changes. Signed-off-by: Felipe Balbi --- drivers/cbus/tahvo.c | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/cbus/tahvo.c b/drivers/cbus/tahvo.c index 647d263..0e28208 100644 --- a/drivers/cbus/tahvo.c +++ b/drivers/cbus/tahvo.c @@ -299,8 +299,9 @@ static int __devinit tahvo_probe(struct platform_device *pdev) return -ENODEV; } - dev_err(&pdev->dev, "%s v%d.%d found\n", tahvo_is_betty ? "Betty" : "Tahvo", - (rev >> 4) & 0x0f, rev & 0x0f); + dev_err(&pdev->dev, "%s v%d.%d found\n", + tahvo_is_betty ? "Betty" : "Tahvo", + (rev >> 4) & 0x0f, rev & 0x0f); irq = platform_get_irq(pdev, 0);