]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - fs/jffs2/symlink.c
doc: make doc. for maxcpus= more visible
[linux-2.6-omap-h63xx.git] / fs / jffs2 / symlink.c
index fc211b6e9b03ec1b6dd4641179d18854d8df3d4b..7e4882c8a7ed2418de322a49952b9f5df8bcf10c 100644 (file)
@@ -20,7 +20,7 @@
 
 static void *jffs2_follow_link(struct dentry *dentry, struct nameidata *nd);
 
-struct inode_operations jffs2_symlink_inode_operations =
+const struct inode_operations jffs2_symlink_inode_operations =
 {
        .readlink =     generic_readlink,
        .follow_link =  jffs2_follow_link,
@@ -51,7 +51,7 @@ static void *jffs2_follow_link(struct dentry *dentry, struct nameidata *nd)
         */
 
        if (!p) {
-               printk(KERN_ERR "jffs2_follow_link(): can't find symlink taerget\n");
+               printk(KERN_ERR "jffs2_follow_link(): can't find symlink target\n");
                p = ERR_PTR(-EIO);
        }
        D1(printk(KERN_DEBUG "jffs2_follow_link(): target path is '%s'\n", (char *) f->target));