]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - fs/pipe.c
Remove executable permission for dma.c
[linux-2.6-omap-h63xx.git] / fs / pipe.c
index 94ad15967cf90ddc04467a093247b1da7879a3fd..4af7aa521813e89a256016329d306f8a4f6f59ec 100644 (file)
--- a/fs/pipe.c
+++ b/fs/pipe.c
@@ -860,7 +860,7 @@ static char *pipefs_dname(struct dentry *dentry, char *buffer, int buflen)
                                dentry->d_inode->i_ino);
 }
 
-static struct dentry_operations pipefs_dentry_operations = {
+static const struct dentry_operations pipefs_dentry_operations = {
        .d_delete       = pipefs_delete_dentry,
        .d_dname        = pipefs_dname,
 };
@@ -1024,11 +1024,6 @@ int do_pipe_flags(int *fd, int flags)
        return error;
 }
 
-int do_pipe(int *fd)
-{
-       return do_pipe_flags(fd, 0);
-}
-
 /*
  * sys_pipe() is the normal C calling standard for creating
  * a pipe. It's not the way Unix traditionally does this, though.