aboutsummaryrefslogtreecommitdiff
path: root/arch/alpha/include/asm/bitsperlong.h
AgeCommit message (Collapse)AuthorFilesLines
2012-12-17UAPI: (Scripted) Disintegrate arch/alpha/include/asmDavid Howells1-8/+0
Signed-off-by: David Howells <[email protected]> Acked-by: Arnd Bergmann <[email protected]> Acked-by: Thomas Gleixner <[email protected]> Acked-by: Michael Kerrisk <[email protected]> Acked-by: Paul E. McKenney <[email protected]> Acked-by: Dave Jones <[email protected]> Acked-by: Michael Cree <[email protected]> Acked-by: Matt Turner <[email protected]>
2009-06-11asm-generic: introduce asm/bitsperlong.hArnd Bergmann1-0/+8
This provides a reliable way for asm-generic/types.h and other files to find out if it is running on a 32 or 64 bit platform. We cannot use CONFIG_64BIT for this in headers that are included from user space because CONFIG symbols are not available there. We also cannot do it inside of asm/types.h because some headers need the word size but cannot include types.h. The solution is to introduce a new header <asm/bitsperlong.h> that defines both __BITS_PER_LONG for user space and BITS_PER_LONG for usage in the kernel. The asm-generic version falls back to 32 bit unless the architecture overrides it, which I did for all 64 bit platforms. Signed-off-by: Remis Lima Baima <[email protected]> Signed-off-by: Arnd Bergmann <[email protected]>