From: Michael Neuling Date: Tue, 3 Aug 2010 22:32:13 +0000 (+1000) Subject: CIFS: Fix compile error with __init in cifs_init_dns_resolver() definition X-Git-Tag: firefly_0821_release~10186^2~1241 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=c66bf6747f1516cb39f17815c8cf5841afd9a5e9;p=firefly-linux-kernel-4.4.55.git 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 --- 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);