aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/dma/amba-pl08x.c
diff options
context:
space:
mode:
authorViresh Kumar <viresh.kumar@st.com>2011-08-05 06:02:32 -0400
committerVinod Koul <vinod.koul@intel.com>2011-08-25 10:03:38 -0400
commit175a5e617cd820d9e22d9e4f6d3ef736b2f874b1 (patch)
tree33a48639bb61d42ef66d71bd4b7170fb4aa0a7cd /drivers/dma/amba-pl08x.c
parent0532e6fced3c4f6a4eda7f078d8aa36405647c07 (diff)
dmaengine/amba-pl08x: Changing few prints to dev_dbg from dev_info
For 8 memory and 16 slave channels 35 boot print lines are printed. And that is too much. Most of this would be more useful for debugging. So moving few of them to dev_dbg instead of dev_info. Now only 3 prints will be printed. This also rearrange one of the debug message to fit into two lines. Signed-off-by: Viresh Kumar <viresh.kumar@st.com> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Vinod Koul <vinod.koul@intel.com>
Diffstat (limited to 'drivers/dma/amba-pl08x.c')
-rw-r--r--drivers/dma/amba-pl08x.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/dma/amba-pl08x.c b/drivers/dma/amba-pl08x.c
index 6c52959b00af..ead88c9a5e93 100644
--- a/drivers/dma/amba-pl08x.c
+++ b/drivers/dma/amba-pl08x.c
@@ -1717,7 +1717,7 @@ static int pl08x_dma_init_virtual_channels(struct pl08x_driver_data *pl08x,
1717 kfree(chan); 1717 kfree(chan);
1718 continue; 1718 continue;
1719 } 1719 }
1720 dev_info(&pl08x->adev->dev, 1720 dev_dbg(&pl08x->adev->dev,
1721 "initialize virtual channel \"%s\"\n", 1721 "initialize virtual channel \"%s\"\n",
1722 chan->name); 1722 chan->name);
1723 1723
@@ -1945,9 +1945,8 @@ static int pl08x_probe(struct amba_device *adev, const struct amba_id *id)
1945 spin_lock_init(&ch->lock); 1945 spin_lock_init(&ch->lock);
1946 ch->serving = NULL; 1946 ch->serving = NULL;
1947 ch->signal = -1; 1947 ch->signal = -1;
1948 dev_info(&adev->dev, 1948 dev_dbg(&adev->dev, "physical channel %d is %s\n",
1949 "physical channel %d is %s\n", i, 1949 i, pl08x_phy_channel_busy(ch) ? "BUSY" : "FREE");
1950 pl08x_phy_channel_busy(ch) ? "BUSY" : "FREE");
1951 } 1950 }
1952 1951
1953 /* Register as many memcpy channels as there are physical channels */ 1952 /* Register as many memcpy channels as there are physical channels */