From c66bf6747f1516cb39f17815c8cf5841afd9a5e9 Mon Sep 17 00:00:00 2001 From: Michael Neuling Date: Wed, 4 Aug 2010 08:32:13 +1000 Subject: CIFS: Fix compile error with __init in cifs_init_dns_resolver() definition An allmodconfig compile on ppc64 with 2.6.32.17 currently gives this error fs/cifs/dns_resolve.h:27: error: expected '=', ',', ';', 'asm' or '__attribute__' before 'cifs_init_dns_resolver' This adds the correct header file to fix this. Signed-off-by: Michael Neuling Cc: David Howells Signed-off-by: Greg Kroah-Hartman --- fs/cifs/dns_resolve.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fs/cifs/dns_resolve.h b/fs/cifs/dns_resolve.h index 5d7f291df162..763237aa2a23 100644 --- a/fs/cifs/dns_resolve.h +++ b/fs/cifs/dns_resolve.h @@ -24,6 +24,8 @@ #define _DNS_RESOLVE_H #ifdef __KERNEL__ +#include + extern int __init cifs_init_dns_resolver(void); extern void cifs_exit_dns_resolver(void); extern int dns_resolve_server_name_to_ip(const char *unc, char **ip_addr); -- cgit v1.2.3