diff options
author | Arnaldo Carvalho de Melo <acme@ghostprotocols.net> | 2009-10-20 04:09:17 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-20 04:09:17 -0400 |
commit | 748879776e3b738d53e64df6dbec7394b829462a (patch) | |
tree | 421cb23434aec4ad99e8223e984423697a029847 /include/net | |
parent | d19742fb1c68e6db83b76e06dea5a374c99e104f (diff) |
net: Avoid compiler warning for mmsghdr when CONFIG_COMPAT is not selected
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Signed-off-by: Arnaldo Carvalho de Melo <acme@ghostprotocols.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/compat.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/net/compat.h b/include/net/compat.h index 9679f05e989..3c7d4e38fa1 100644 --- a/include/net/compat.h +++ b/include/net/compat.h | |||
@@ -33,7 +33,11 @@ extern int compat_sock_get_timestamp(struct sock *, struct timeval __user *); | |||
33 | extern int compat_sock_get_timestampns(struct sock *, struct timespec __user *); | 33 | extern int compat_sock_get_timestampns(struct sock *, struct timespec __user *); |
34 | 34 | ||
35 | #else /* defined(CONFIG_COMPAT) */ | 35 | #else /* defined(CONFIG_COMPAT) */ |
36 | #define compat_msghdr msghdr /* to avoid compiler warnings */ | 36 | /* |
37 | * To avoid compiler warnings: | ||
38 | */ | ||
39 | #define compat_msghdr msghdr | ||
40 | #define compat_mmsghdr mmsghdr | ||
37 | #endif /* defined(CONFIG_COMPAT) */ | 41 | #endif /* defined(CONFIG_COMPAT) */ |
38 | 42 | ||
39 | extern int get_compat_msghdr(struct msghdr *, struct compat_msghdr __user *); | 43 | extern int get_compat_msghdr(struct msghdr *, struct compat_msghdr __user *); |