[PATCH] Define BITS_PER_BYTE
This can make the intent behind some arithmetic expressions clearer. Signed-off-by: Bryan O'Sullivan <bos@pathscale.com> Signed-off-by: Adrian Bunk <bunk@stusta.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
493f01d1d0
commit
f7589f28d7
|
@ -8,6 +8,8 @@
|
||||||
(((bits)+BITS_PER_LONG-1)/BITS_PER_LONG)
|
(((bits)+BITS_PER_LONG-1)/BITS_PER_LONG)
|
||||||
#define DECLARE_BITMAP(name,bits) \
|
#define DECLARE_BITMAP(name,bits) \
|
||||||
unsigned long name[BITS_TO_LONGS(bits)]
|
unsigned long name[BITS_TO_LONGS(bits)]
|
||||||
|
|
||||||
|
#define BITS_PER_BYTE 8
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include <linux/posix_types.h>
|
#include <linux/posix_types.h>
|
||||||
|
|
Loading…
Reference in New Issue