Skip to content

Commit

Permalink
[PATCH] dvb: bt8xx: endianness fix
Browse files Browse the repository at this point in the history
Endianness fix for risc DMA start address setting.  (reported by Stefan
Haubenthal/Peter Hettkamp)

Signed-off-by: Johannes Stezenbach <js@linuxtv.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Johannes Stezenbach authored and Linus Torvalds committed Sep 9, 2005
1 parent 5b5b534 commit 466d725
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/media/dvb/bt8xx/bt878.c
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ void bt878_start(struct bt878 *bt, u32 controlreg, u32 op_sync_orin,
controlreg &= ~0x1f;
controlreg |= 0x1b;

btwrite(cpu_to_le32(bt->risc_dma), BT878_ARISC_START);
btwrite(bt->risc_dma, BT878_ARISC_START);

/* original int mask had :
* 6 2 8 4 0
Expand Down

0 comments on commit 466d725

Please sign in to comment.