From: Vijay Kumar Date: Wed, 29 Oct 2008 03:28:36 +0000 (+0530) Subject: Staging: poch: Fix build warnings X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=3ca67c1b94f26cacf9c709d2cf39792cf14f1356;p=deliverable%2Flinux.git Staging: poch: Fix build warnings Removed out printing of DMA address, that causes warnings during build. Signed-off-by: Vijay Kumar Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/poch/poch.c b/drivers/staging/poch/poch.c index afc9863f34dd..b54760f41a4b 100644 --- a/drivers/staging/poch/poch.c +++ b/drivers/staging/poch/poch.c @@ -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;