CIFS: Fix compile error with __init in cifs_init_dns_resolver() definition
authorMichael Neuling <mikey@neuling.org>
Tue, 3 Aug 2010 22:32:13 +0000 (08:32 +1000)
committerGreg Kroah-Hartman <gregkh@suse.de>
Tue, 10 Aug 2010 17:20:46 +0000 (10:20 -0700)
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 <mikey@neuling.org>
Cc: David Howells <dhowells@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
fs/cifs/dns_resolve.h

index 5d7f291df162731bb58abc124242211a88c0ad37..763237aa2a23e0bcd3fc0ed65fcd6e0ee7c2ea8d 100644 (file)
@@ -24,6 +24,8 @@
 #define _DNS_RESOLVE_H
 
 #ifdef __KERNEL__
+#include <linux/module.h>
+
 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);