diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2012-10-04 20:13:03 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-10-05 14:04:54 -0400 |
commit | 32766ec8195f801935cce8954cf45389885afc38 (patch) | |
tree | 2ad37df039977436df564e03a51710dad4ba5975 /drivers/net/ethernet/sfc/net_driver.h | |
parent | 52e842432f36d5b15227d0ee0d2aa3d2bc3cc0b2 (diff) |
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 <bhutchings@solarflare.com>
Signed-off-by: Takuya Yoshikawa <yoshikawa.takuya@oss.ntt.co.jp>
Cc: David Miller <davem@davemloft.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/net/ethernet/sfc/net_driver.h')
-rw-r--r-- | drivers/net/ethernet/sfc/net_driver.h | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/drivers/net/ethernet/sfc/net_driver.h b/drivers/net/ethernet/sfc/net_driver.h index c1a010cda89b..576a31091165 100644 --- a/drivers/net/ethernet/sfc/net_driver.h +++ b/drivers/net/ethernet/sfc/net_driver.h | |||
@@ -1101,18 +1101,6 @@ static inline struct efx_rx_buffer *efx_rx_buffer(struct efx_rx_queue *rx_queue, | |||
1101 | return &rx_queue->buffer[index]; | 1101 | return &rx_queue->buffer[index]; |
1102 | } | 1102 | } |
1103 | 1103 | ||
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 | |||
1116 | 1104 | ||
1117 | /** | 1105 | /** |
1118 | * EFX_MAX_FRAME_LEN - calculate maximum frame length | 1106 | * EFX_MAX_FRAME_LEN - calculate maximum frame length |