remove BITS_TO_TYPE macro I realized, that it is actually the same as DIV_ROUND_UP, use it instead.
Signed-off-by: Jiri Slaby <[EMAIL PROTECTED]> --- commit c1b003cd9e5befbc3d915a9e37f46585127f9d1f tree d800859baebde3f7fcb001801d32c528c4240250 parent 5a28a23f3c53993aaf6e7ef6c392e5f4c20d4a3b author Jiri Slaby <[EMAIL PROTECTED]> Sun, 26 Aug 2007 15:50:39 +0200 committer Jiri Slaby <[EMAIL PROTECTED]> Sun, 26 Aug 2007 15:50:39 +0200 include/linux/bitops.h | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/include/linux/bitops.h b/include/linux/bitops.h index a57b81f..8b5ecf8 100644 --- a/include/linux/bitops.h +++ b/include/linux/bitops.h @@ -6,8 +6,7 @@ #define BIT(nr) (1UL << (nr)) #define BIT_MASK(nr) (1UL << ((nr) % BITS_PER_LONG)) #define BIT_WORD(nr) ((nr) / BITS_PER_LONG) -#define BITS_TO_TYPE(nr, t) (((nr)+(t)-1)/(t)) -#define BITS_TO_LONGS(nr) BITS_TO_TYPE(nr, BITS_PER_LONG) +#define BITS_TO_LONGS(nr) DIV_ROUND_UP(nr, BITS_PER_LONG) #define BITS_PER_BYTE 8 #endif - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/