Skip to content

Commit 32766ec

Browse files
Ben Hutchingstorvalds
Ben Hutchings
authored andcommitted
drivers/net/ethernet/sfc: use standard __{clear,set}_bit_le() functions
There are now standard functions for dealing with little-endian bit arrays, so use them instead of our own implementations. Signed-off-by: Ben Hutchings <[email protected]> Signed-off-by: Takuya Yoshikawa <[email protected]> Cc: David Miller <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
1 parent 52e8424 commit 32766ec

File tree

3 files changed

+4
-16
lines changed

3 files changed

+4
-16
lines changed

drivers/net/ethernet/sfc/efx.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -2019,14 +2019,14 @@ static void efx_set_rx_mode(struct net_device *net_dev)
20192019
netdev_for_each_mc_addr(ha, net_dev) {
20202020
crc = ether_crc_le(ETH_ALEN, ha->addr);
20212021
bit = crc & (EFX_MCAST_HASH_ENTRIES - 1);
2022-
set_bit_le(bit, mc_hash->byte);
2022+
__set_bit_le(bit, mc_hash);
20232023
}
20242024

20252025
/* Broadcast packets go through the multicast hash filter.
20262026
* ether_crc_le() of the broadcast address is 0xbe2612ff
20272027
* so we always add bit 0xff to the mask.
20282028
*/
2029-
set_bit_le(0xff, mc_hash->byte);
2029+
__set_bit_le(0xff, mc_hash);
20302030
}
20312031

20322032
if (efx->port_enabled)

drivers/net/ethernet/sfc/net_driver.h

-12
Original file line numberDiff line numberDiff line change
@@ -1101,18 +1101,6 @@ static inline struct efx_rx_buffer *efx_rx_buffer(struct efx_rx_queue *rx_queue,
11011101
return &rx_queue->buffer[index];
11021102
}
11031103

1104-
/* Set bit in a little-endian bitfield */
1105-
static inline void set_bit_le(unsigned nr, unsigned char *addr)
1106-
{
1107-
addr[nr / 8] |= (1 << (nr % 8));
1108-
}
1109-
1110-
/* Clear bit in a little-endian bitfield */
1111-
static inline void clear_bit_le(unsigned nr, unsigned char *addr)
1112-
{
1113-
addr[nr / 8] &= ~(1 << (nr % 8));
1114-
}
1115-
11161104

11171105
/**
11181106
* EFX_MAX_FRAME_LEN - calculate maximum frame length

drivers/net/ethernet/sfc/nic.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -472,9 +472,9 @@ void efx_nic_init_tx(struct efx_tx_queue *tx_queue)
472472

473473
efx_reado(efx, &reg, FR_AA_TX_CHKSM_CFG);
474474
if (tx_queue->queue & EFX_TXQ_TYPE_OFFLOAD)
475-
clear_bit_le(tx_queue->queue, (void *)&reg);
475+
__clear_bit_le(tx_queue->queue, &reg);
476476
else
477-
set_bit_le(tx_queue->queue, (void *)&reg);
477+
__set_bit_le(tx_queue->queue, &reg);
478478
efx_writeo(efx, &reg, FR_AA_TX_CHKSM_CFG);
479479
}
480480

0 commit comments

Comments
 (0)