|
@@ -164,7 +164,7 @@ static void slic_mcast_set_bit(struct adapter *adapter, char *address)
|
|
|
/* Get the CRC polynomial for the mac address */
|
|
|
/* we use bits 1-8 (lsb), bitwise reversed,
|
|
|
* msb (= lsb bit 0 before bitrev) is automatically discarded */
|
|
|
- crcpoly = (ether_crc(ETH_ALEN, address)>>23);
|
|
|
+ crcpoly = ether_crc(ETH_ALEN, address)>>23;
|
|
|
|
|
|
/* We only have space on the SLIC for 64 entries. Lop
|
|
|
* off the top two bits. (2^6 = 64)
|
|
@@ -1862,8 +1862,8 @@ static void slic_xmit_build_request(struct adapter *adapter,
|
|
|
hcmd->cmdsize = (u32) ((((u64)&ihcmd->u.slic_buffers.bufs[1] -
|
|
|
(u64) hcmd) + 31) >> 5);
|
|
|
#else
|
|
|
- hcmd->cmdsize = ((((u32) &ihcmd->u.slic_buffers.bufs[1] -
|
|
|
- (u32) hcmd) + 31) >> 5);
|
|
|
+ hcmd->cmdsize = (((u32)&ihcmd->u.slic_buffers.bufs[1] -
|
|
|
+ (u32)hcmd) + 31) >> 5;
|
|
|
#endif
|
|
|
}
|
|
|
|