diff options
author | Milind Arun Choudhary <milindchoudhary@gmail.com> | 2007-04-27 16:55:31 -0400 |
---|---|---|
committer | Jeff Garzik <jeff@garzik.org> | 2007-04-28 11:01:07 -0400 |
commit | 55e924cf5772cbcf00549e448be35b392ff3084c (patch) | |
tree | 088aeee07c810987ba32f24e9ee7ec2581106257 /drivers/net/ixgb/ixgb.h | |
parent | 9099cfb9170f352f08207dfa099717a904cff71f (diff) |
ixgb: ROUND_UP macro cleanup in drivers/net/ixgb
IXGB_ROUNDUP macro cleanup ,use ALIGN
Signed-off-by: Milind Arun Choudhary <milindchoudhary@gmail.com>
Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
Signed-off-by: Jeff Garzik <jeff@garzik.org>
Diffstat (limited to 'drivers/net/ixgb/ixgb.h')
-rw-r--r-- | drivers/net/ixgb/ixgb.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/net/ixgb/ixgb.h b/drivers/net/ixgb/ixgb.h index cf30a1059ce0..c8e90861f869 100644 --- a/drivers/net/ixgb/ixgb.h +++ b/drivers/net/ixgb/ixgb.h | |||
@@ -111,9 +111,6 @@ struct ixgb_adapter; | |||
111 | /* How many Rx Buffers do we bundle into one write to the hardware ? */ | 111 | /* How many Rx Buffers do we bundle into one write to the hardware ? */ |
112 | #define IXGB_RX_BUFFER_WRITE 8 /* Must be power of 2 */ | 112 | #define IXGB_RX_BUFFER_WRITE 8 /* Must be power of 2 */ |
113 | 113 | ||
114 | /* only works for sizes that are powers of 2 */ | ||
115 | #define IXGB_ROUNDUP(i, size) ((i) = (((i) + (size) - 1) & ~((size) - 1))) | ||
116 | |||
117 | /* wrapper around a pointer to a socket buffer, | 114 | /* wrapper around a pointer to a socket buffer, |
118 | * so a DMA handle can be stored along with the buffer */ | 115 | * so a DMA handle can be stored along with the buffer */ |
119 | struct ixgb_buffer { | 116 | struct ixgb_buffer { |