Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753707AbbETTLi (ORCPT ); Wed, 20 May 2015 15:11:38 -0400 Received: from s159.web-hosting.com ([68.65.121.203]:33395 "EHLO s159.web-hosting.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752681AbbETTLe (ORCPT ); Wed, 20 May 2015 15:11:34 -0400 From: Jagan Teki To: dmaengine@vger.kernel.org Cc: linux-kernel@vger.kernel.org, Jagan Teki , Dan Williams , Vinod Koul Subject: [PATCH 2/2] dma: amba-pl08x: Fix line over 80 characters Date: Thu, 21 May 2015 00:41:10 +0530 Message-Id: <1432149070-9569-2-git-send-email-jteki@openedev.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1432149070-9569-1-git-send-email-jteki@openedev.com> References: <1432149070-9569-1-git-send-email-jteki@openedev.com> X-OutGoing-Spam-Status: No, score=-1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - server159.web-hosting.com X-AntiAbuse: Original Domain - vger.kernel.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - openedev.com X-Get-Message-Sender-Via: server159.web-hosting.com: authenticated_id: jteki@openedev.com X-Source: X-Source-Args: X-Source-Dir: X-From-Rewrite: unmodified, already matched Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2293 Lines: 63 This patch fixes line over 80 characters warninings while running checkpatch.pl Signed-off-by: Jagan Teki Cc: Dan Williams Cc: Vinod Koul --- drivers/dma/amba-pl08x.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/drivers/dma/amba-pl08x.c b/drivers/dma/amba-pl08x.c index 49d396e..a5d9cc9 100644 --- a/drivers/dma/amba-pl08x.c +++ b/drivers/dma/amba-pl08x.c @@ -646,7 +646,9 @@ static void pl08x_phy_alloc_and_start(struct pl08x_dma_chan *plchan) ch = pl08x_get_phy_channel(pl08x, plchan); if (!ch) { - dev_dbg(&pl08x->adev->dev, "no physical channel available for xfer on %s\n", plchan->name); + dev_dbg(&pl08x->adev->dev, + "no physical channel available for xfer on %s\n", + plchan->name); plchan->state = PL08X_CHAN_WAITING; return; } @@ -698,7 +700,8 @@ static void pl08x_phy_free(struct pl08x_dma_chan *plchan) } if (!next) { - list_for_each_entry(p, &pl08x->slave.channels, vc.chan.device_node) + list_for_each_entry(p, &pl08x->slave.channels, + vc.chan.device_node) if (p->state == PL08X_CHAN_WAITING) { next = p; break; @@ -1988,7 +1991,8 @@ static int pl08x_debugfs_show(struct seq_file *s, void *data) seq_printf(s, "\nPL08x virtual memcpy channels:\n"); seq_printf(s, "CHANNEL:\tSTATE:\n"); seq_printf(s, "--------\t------\n"); - list_for_each_entry(chan, &pl08x->memcpy.channels, vc.chan.device_node) { + list_for_each_entry(chan, &pl08x->memcpy.channels, + vc.chan.device_node) { seq_printf(s, "%s\t\t%s\n", chan->name, pl08x_state_str(chan->state)); } @@ -2172,7 +2176,8 @@ static int pl08x_probe(struct amba_device *adev, const struct amba_id *id) u32 val; val = readl(ch->reg_config); - if (val & (PL080N_CONFIG_ITPROT | PL080N_CONFIG_SECPROT)) { + if (val & (PL080N_CONFIG_ITPROT | + PL080N_CONFIG_SECPROT)) { dev_info(&adev->dev, "physical channel %d reserved for secure access only\n", i); ch->locked = true; } -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/