firewire: endianess annotations

Kills warnings from 'make C=1 CHECKFLAGS="-D__CHECK_ENDIAN__" modules':

drivers/firewire/fw-transaction.c:771:10: warning: incorrect type in assignment (different base types)
drivers/firewire/fw-transaction.c:771:10: expected unsigned int [unsigned] [usertype] <noident>
drivers/firewire/fw-transaction.c:771:10: got restricted unsigned int [usertype] <noident>
drivers/firewire/fw-transaction.h:93:10: warning: incorrect type in assignment (different base types)
drivers/firewire/fw-transaction.h:93:10: expected unsigned int [unsigned] [usertype] <noident>
drivers/firewire/fw-transaction.h:93:10: got restricted unsigned int [usertype] <noident>
drivers/firewire/fw-ohci.c:1490:8: warning: restricted degrades to integer
drivers/firewire/fw-ohci.c:1490:35: warning: restricted degrades to integer
drivers/firewire/fw-ohci.c:1516:5: warning: cast to restricted type

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

+6 -6
+2 -2
drivers/firewire/fw-ohci.c
··· 1487 1487 void *p, *end; 1488 1488 int i; 1489 1489 1490 - if (db->first_res_count > 0 && db->second_res_count > 0) { 1490 + if (db->first_res_count != 0 && db->second_res_count != 0) { 1491 1491 if (ctx->excess_bytes <= le16_to_cpu(db->second_req_count)) { 1492 1492 /* This descriptor isn't done yet, stop iteration. */ 1493 1493 return 0; ··· 1513 1513 memcpy(ctx->header + i + 4, p + 8, ctx->base.header_size - 4); 1514 1514 i += ctx->base.header_size; 1515 1515 ctx->excess_bytes += 1516 - (le32_to_cpu(*(u32 *)(p + 4)) >> 16) & 0xffff; 1516 + (le32_to_cpu(*(__le32 *)(p + 4)) >> 16) & 0xffff; 1517 1517 p += ctx->base.header_size + 4; 1518 1518 } 1519 1519 ctx->header_length = i;
+1 -1
drivers/firewire/fw-transaction.c
··· 751 751 void *payload, size_t length, void *callback_data) 752 752 { 753 753 int i, start, end; 754 - u32 *map; 754 + __be32 *map; 755 755 756 756 if (!TCODE_IS_READ_REQUEST(tcode)) { 757 757 fw_send_response(card, request, RCODE_TYPE_ERROR);
+3 -3
drivers/firewire/fw-transaction.h
··· 86 86 static inline void 87 87 fw_memcpy_from_be32(void *_dst, void *_src, size_t size) 88 88 { 89 - u32 *dst = _dst; 90 - u32 *src = _src; 89 + u32 *dst = _dst; 90 + __be32 *src = _src; 91 91 int i; 92 92 93 93 for (i = 0; i < size / 4; i++) 94 - dst[i] = cpu_to_be32(src[i]); 94 + dst[i] = be32_to_cpu(src[i]); 95 95 } 96 96 97 97 static inline void