firewire: endianess fix

The generation of incoming requests was filled in in wrong byte order on
machines with big endian CPU.

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
Signed-off-by: Jarod Wilson <jwilson@redhat.com>

+1 -1
+1 -1
drivers/firewire/fw-ohci.c
··· 375 */ 376 377 if (p.ack + 16 == 0x09) 378 - ohci->request_generation = (buffer[2] >> 16) & 0xff; 379 else if (ctx == &ohci->ar_request_ctx) 380 fw_core_handle_request(&ohci->card, &p); 381 else
··· 375 */ 376 377 if (p.ack + 16 == 0x09) 378 + ohci->request_generation = (p.header[2] >> 16) & 0xff; 379 else if (ctx == &ohci->ar_request_ctx) 380 fw_core_handle_request(&ohci->card, &p); 381 else