mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
[PATCH] ohci1394: tlabels misprinted in DBGMSG
- Print the correct value in the DBGMSG in dma_rcv_tasklet(). See OHCI 1.1 section 8.7, page 103 ff. - Print tlabels as %d everywhere. Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de> Signed-off-by: Jody McIntyre <scjody@steamballoon.com> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
8d134db051
commit
dfe547ab87
@ -2691,7 +2691,7 @@ static void dma_rcv_tasklet (unsigned long data)
|
||||
(cond_le32_to_cpu(d->spb[length/4-1], ohci->no_swap_incoming)>>16)&0x1f,
|
||||
(cond_le32_to_cpu(d->spb[length/4-1], ohci->no_swap_incoming)>>21)&0x3,
|
||||
tcode, length, d->ctx,
|
||||
(cond_le32_to_cpu(d->spb[length/4-1], ohci->no_swap_incoming)>>10)&0x3f);
|
||||
(cond_le32_to_cpu(d->spb[0], ohci->no_swap_incoming)>>10)&0x3f);
|
||||
|
||||
ack = (((cond_le32_to_cpu(d->spb[length/4-1], ohci->no_swap_incoming)>>16)&0x1f)
|
||||
== 0x11) ? 1 : 0;
|
||||
@ -2754,7 +2754,7 @@ static void dma_trm_tasklet (unsigned long data)
|
||||
d->ctx);
|
||||
else
|
||||
DBGMSG("Packet sent to node %d tcode=0x%X tLabel="
|
||||
"0x%02X ack=0x%X spd=%d dataLength=%d ctx=%d",
|
||||
"%d ack=0x%X spd=%d dataLength=%d ctx=%d",
|
||||
(le32_to_cpu(d->prg_cpu[d->sent_ind]->data[1])>>16)&0x3f,
|
||||
(le32_to_cpu(d->prg_cpu[d->sent_ind]->data[0])>>4)&0xf,
|
||||
(le32_to_cpu(d->prg_cpu[d->sent_ind]->data[0])>>10)&0x3f,
|
||||
@ -2763,7 +2763,7 @@ static void dma_trm_tasklet (unsigned long data)
|
||||
d->ctx);
|
||||
else
|
||||
DBGMSG("Packet sent to node %d tcode=0x%X tLabel="
|
||||
"0x%02X ack=0x%X spd=%d data=0x%08X ctx=%d",
|
||||
"%d ack=0x%X spd=%d data=0x%08X ctx=%d",
|
||||
(le32_to_cpu(d->prg_cpu[d->sent_ind]->data[1])
|
||||
>>16)&0x3f,
|
||||
(le32_to_cpu(d->prg_cpu[d->sent_ind]->data[0])
|
||||
|
Loading…
Reference in New Issue
Block a user