Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 126629
b: refs/heads/master
c: 95ead52
h: refs/heads/master
i:
  126627: ca01c89
v: v3
  • Loading branch information
Vijay Kumar authored and Greg Kroah-Hartman committed Jan 6, 2009
1 parent f12d5d1 commit 6192545
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 0d1d1424330cc1934f2b2742f0cfa2c31e6a250b
refs/heads/master: 95ead520a3d77b1a654ce95ada9639acd7e91619
5 changes: 4 additions & 1 deletion trunk/drivers/staging/poch/poch.c
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,10 @@ static void channel_dma_init(struct channel_info *channel)
}

printk(KERN_WARNING "block_size, group_size, group_count\n");
iowrite32(channel->block_size, fpga + block_size_reg);
/*
* Block size is represented in no. of 64 bit transfers.
*/
iowrite32(channel->block_size / 8, fpga + block_size_reg);
iowrite32(channel->group_size / channel->block_size,
fpga + block_count_reg);
iowrite32(channel->group_count, fpga + group_count_reg);
Expand Down

0 comments on commit 6192545

Please sign in to comment.