firewire: Fix extraction of source node id
Fix extraction of the source node id from the packet header. Signed-off-by: Rabin Vincent <rabin@rab.in> Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
This commit is contained in:
parent
bcee893c6c
commit
478b233eda
1 changed files with 1 additions and 1 deletions
|
@ -650,7 +650,7 @@ fw_core_handle_request(struct fw_card *card, struct fw_packet *p)
|
||||||
HEADER_GET_OFFSET_HIGH(p->header[1]) << 32) | p->header[2];
|
HEADER_GET_OFFSET_HIGH(p->header[1]) << 32) | p->header[2];
|
||||||
tcode = HEADER_GET_TCODE(p->header[0]);
|
tcode = HEADER_GET_TCODE(p->header[0]);
|
||||||
destination = HEADER_GET_DESTINATION(p->header[0]);
|
destination = HEADER_GET_DESTINATION(p->header[0]);
|
||||||
source = HEADER_GET_SOURCE(p->header[0]);
|
source = HEADER_GET_SOURCE(p->header[1]);
|
||||||
|
|
||||||
spin_lock_irqsave(&address_handler_lock, flags);
|
spin_lock_irqsave(&address_handler_lock, flags);
|
||||||
handler = lookup_enclosing_address_handler(&address_handler_list,
|
handler = lookup_enclosing_address_handler(&address_handler_list,
|
||||||
|
|
Loading…
Add table
Reference in a new issue