[Trivial 2.5.58] Remove compile warning from fs/ncpfs/inode.c

From: Bob Miller (rem@osdl.org)
Date: Fri Jan 17 2003 - 16:46:39 EST


The global declaration for ncp_symlink_inode_operations is only for certain
configurations. This patch limit its declaration to the configurations
where it is needed.

diff -Nru a/fs/ncpfs/inode.c b/fs/ncpfs/inode.c
--- a/fs/ncpfs/inode.c Thu Jan 16 14:06:04 2003
+++ b/fs/ncpfs/inode.c Thu Jan 16 14:06:04 2003
@@ -227,11 +227,13 @@
         ncp_update_inode(inode, nwinfo);
 }
 
+#if defined(CONFIG_NCPFS_EXTRAS) || defined(CONFIG_NCPFS_NFS_NS)
 static struct inode_operations ncp_symlink_inode_operations = {
         .readlink = page_readlink,
         .follow_link = page_follow_link,
         .setattr = ncp_notify_change,
 };
+#endif
 
 /*
  * Get a new inode.

-- 
Bob Miller					Email: rem@osdl.org
Open Source Development Lab			Phone: 503.626.2455 Ext. 17
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Thu Jan 23 2003 - 22:00:17 EST