Commit 3aa7110e authored by Al Viro's avatar Al Viro Committed by Mauro Carvalho Chehab

V4L/DVB (8132): bt8xx endianness annotations and fixes

Signed-off-by: default avatarAl Viro <viro@zeniv.linux.org.uk>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@infradead.org>
parent 947a0800
...@@ -128,7 +128,7 @@ struct bt878 { ...@@ -128,7 +128,7 @@ struct bt878 {
dma_addr_t buf_dma; dma_addr_t buf_dma;
u32 risc_size; u32 risc_size;
u32 *risc_cpu; __le32 *risc_cpu;
dma_addr_t risc_dma; dma_addr_t risc_dma;
u32 risc_pos; u32 risc_pos;
......
...@@ -3705,7 +3705,7 @@ static void bttv_risc_disasm(struct bttv *btv, ...@@ -3705,7 +3705,7 @@ static void bttv_risc_disasm(struct bttv *btv,
for (i = 0; i < (risc->size >> 2); i += n) { for (i = 0; i < (risc->size >> 2); i += n) {
printk("%s: 0x%lx: ", btv->c.name, printk("%s: 0x%lx: ", btv->c.name,
(unsigned long)(risc->dma + (i<<2))); (unsigned long)(risc->dma + (i<<2)));
n = bttv_risc_decode(risc->cpu[i]); n = bttv_risc_decode(le32_to_cpu(risc->cpu[i]));
for (j = 1; j < n; j++) for (j = 1; j < n; j++)
printk("%s: 0x%lx: 0x%08x [ arg #%d ]\n", printk("%s: 0x%lx: 0x%08x [ arg #%d ]\n",
btv->c.name, (unsigned long)(risc->dma + ((i+j)<<2)), btv->c.name, (unsigned long)(risc->dma + ((i+j)<<2)),
...@@ -3774,8 +3774,8 @@ static void bttv_irq_debug_low_latency(struct bttv *btv, u32 rc) ...@@ -3774,8 +3774,8 @@ static void bttv_irq_debug_low_latency(struct bttv *btv, u32 rc)
printk("bttv%d: irq: skipped frame [main=%lx,o_vbi=%lx,o_field=%lx,rc=%lx]\n", printk("bttv%d: irq: skipped frame [main=%lx,o_vbi=%lx,o_field=%lx,rc=%lx]\n",
btv->c.nr, btv->c.nr,
(unsigned long)btv->main.dma, (unsigned long)btv->main.dma,
(unsigned long)btv->main.cpu[RISC_SLOT_O_VBI+1], (unsigned long)le32_to_cpu(btv->main.cpu[RISC_SLOT_O_VBI+1]),
(unsigned long)btv->main.cpu[RISC_SLOT_O_FIELD+1], (unsigned long)le32_to_cpu(btv->main.cpu[RISC_SLOT_O_FIELD+1]),
(unsigned long)rc); (unsigned long)rc);
if (0 == (btread(BT848_DSTATUS) & BT848_DSTATUS_HLOC)) { if (0 == (btread(BT848_DSTATUS) & BT848_DSTATUS_HLOC)) {
......
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