mirror of
https://github.com/torvalds/linux.git
synced 2024-12-26 04:42:12 +00:00
[PATCH] -Wundef fixes (hamachi)
All uses of ADDRLEN are comparisons with 64 (it's an address width). added define to 32 (again, we only care about comparisons with 64) if not defined. Signed-off-by: Al Viro <viro@zeniv.linux.org.uk> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
95608261da
commit
f20badbe12
@ -204,6 +204,10 @@ KERN_INFO " Further modifications by Keith Underwood <keithu@parl.clemson.edu>
|
|||||||
|
|
||||||
#define RUN_AT(x) (jiffies + (x))
|
#define RUN_AT(x) (jiffies + (x))
|
||||||
|
|
||||||
|
#ifndef ADDRLEN
|
||||||
|
#define ADDRLEN 32
|
||||||
|
#endif
|
||||||
|
|
||||||
/* Condensed bus+endian portability operations. */
|
/* Condensed bus+endian portability operations. */
|
||||||
#if ADDRLEN == 64
|
#if ADDRLEN == 64
|
||||||
#define cpu_to_leXX(addr) cpu_to_le64(addr)
|
#define cpu_to_leXX(addr) cpu_to_le64(addr)
|
||||||
|
Loading…
Reference in New Issue
Block a user