Skip to content

Commit

Permalink
[ARM] 4065/1: S3C24XX: dma printk fixes
Browse files Browse the repository at this point in the history
The commit 505788c in linus kernel tree
introduced some printks (for debugging ?) which are flooding the logs on
my h1940. This patch replace them with pr_debug calls.

Signed-off-by: Arnaud Patard <arnaud.patard@rtp-net.org>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Arnaud Patard authored and Russell King committed Dec 30, 2006
1 parent 35108fb commit ae2aa90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/mach-s3c2410/dma.c
Original file line number Diff line number Diff line change
Expand Up @@ -1053,11 +1053,11 @@ int s3c2410_dma_config(dmach_t channel,
if (chan == NULL)
return -EINVAL;

printk("Initial dcon is %08x\n", dcon);
pr_debug("%s: Initial dcon is %08x\n", __FUNCTION__, dcon);

dcon |= chan->dcon & dma_sel.dcon_mask;

printk("New dcon is %08x\n", dcon);
pr_debug("%s: New dcon is %08x\n", __FUNCTION__, dcon);

switch (xferunit) {
case 1:
Expand Down

0 comments on commit ae2aa90

Please sign in to comment.