summaryrefslogtreecommitdiffstats
path: root/fs/fifo.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/fifo.c')
-rw-r--r--fs/fifo.c6
1 files changed, 1 insertions, 5 deletions
diff --git a/fs/fifo.c b/fs/fifo.c
index fd48328e9..33663cdf2 100644
--- a/fs/fifo.c
+++ b/fs/fifo.c
@@ -152,10 +152,6 @@ err_nolock_nocleanup:
* is contain the open that then fills in the correct operations
* depending on the access mode of the file...
*/
-static struct file_operations def_fifo_fops = {
+struct file_operations def_fifo_fops = {
open: fifo_open, /* will set read or write pipe_fops */
};
-
-struct inode_operations fifo_inode_operations = {
- &def_fifo_fops, /* default file operations */
-};