mirror of
https://github.com/adulau/aha.git
synced 2025-01-02 14:13:18 +00:00
V4L/DVB (8129): pluto_set_dma_addr() fix
bogus cpu_to_le32() when passing dma address to hardware via writel() - writel() converts itself. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
This commit is contained in:
parent
a36ef6b1e0
commit
67778b3227
1 changed files with 1 additions and 1 deletions
|
@ -234,7 +234,7 @@ static void pluto_reset_ts(struct pluto *pluto, int reenable)
|
|||
|
||||
static void pluto_set_dma_addr(struct pluto *pluto)
|
||||
{
|
||||
pluto_writereg(pluto, REG_PCAR, cpu_to_le32(pluto->dma_addr));
|
||||
pluto_writereg(pluto, REG_PCAR, pluto->dma_addr);
|
||||
}
|
||||
|
||||
static int __devinit pluto_dma_map(struct pluto *pluto)
|
||||
|
|
Loading…
Reference in a new issue