summaryrefslogtreecommitdiffstats
path: root/fs/isofs/file.c
diff options
context:
space:
mode:
Diffstat (limited to 'fs/isofs/file.c')
-rw-r--r--fs/isofs/file.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/fs/isofs/file.c b/fs/isofs/file.c
deleted file mode 100644
index 9de31e024..000000000
--- a/fs/isofs/file.c
+++ /dev/null
@@ -1,31 +0,0 @@
-/*
- * linux/fs/isofs/file.c
- *
- * (C) 1992, 1993, 1994 Eric Youngdale Modified for ISO 9660 filesystem.
- *
- * (C) 1991 Linus Torvalds - minix filesystem
- *
- * isofs regular file handling primitives
- */
-
-#include <linux/sched.h>
-#include <linux/iso_fs.h>
-#include <linux/fcntl.h>
-#include <linux/kernel.h>
-#include <linux/errno.h>
-#include <linux/stat.h>
-#include <linux/locks.h>
-#include <linux/fs.h>
-
-/*
- * We have mostly NULLs here: the current defaults are OK for
- * the isofs filesystem.
- */
-static struct file_operations isofs_file_operations = {
- read: generic_file_read,
- mmap: generic_file_mmap,
-};
-
-struct inode_operations isofs_file_inode_operations = {
- &isofs_file_operations, /* default file operations */
-};