Skip to content

Commit

Permalink
Staging: poch: Fix build warnings
Browse files Browse the repository at this point in the history
Removed out printing of DMA address, that causes warnings during
build.

Signed-off-by: Vijay Kumar <vijaykumar@bravegnu.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
  • Loading branch information
Vijay Kumar authored and Greg Kroah-Hartman committed Jan 6, 2009
1 parent 7dadbbc commit 3ca67c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/staging/poch/poch.c
Original file line number Diff line number Diff line change
Expand Up @@ -390,8 +390,8 @@ static int poch_channel_alloc_groups(struct channel_info *channel)
group->user_offset =
(header_pages + (i * group_pages)) * PAGE_SIZE;

printk(KERN_INFO PFX "%ld: user_offset: 0x%lx dma: 0x%x\n", i,
group->user_offset, group->dma_addr);
printk(KERN_INFO PFX "%ld: user_offset: 0x%lx\n", i,
group->user_offset);
}

return 0;
Expand Down

0 comments on commit 3ca67c1

Please sign in to comment.