Commit 3ca67c1b authored by Vijay Kumar's avatar Vijay Kumar Committed by Greg Kroah-Hartman

Staging: poch: Fix build warnings

Removed out printing of DMA address, that causes warnings during
build.
Signed-off-by: default avatarVijay Kumar <vijaykumar@bravegnu.org>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 7dadbbcf
...@@ -390,8 +390,8 @@ static int poch_channel_alloc_groups(struct channel_info *channel) ...@@ -390,8 +390,8 @@ static int poch_channel_alloc_groups(struct channel_info *channel)
group->user_offset = group->user_offset =
(header_pages + (i * group_pages)) * PAGE_SIZE; (header_pages + (i * group_pages)) * PAGE_SIZE;
printk(KERN_INFO PFX "%ld: user_offset: 0x%lx dma: 0x%x\n", i, printk(KERN_INFO PFX "%ld: user_offset: 0x%lx\n", i,
group->user_offset, group->dma_addr); group->user_offset);
} }
return 0; return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment