summaryrefslogtreecommitdiffstats
path: root/fs/isofs/file.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-03-02 02:36:47 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-03-02 02:36:47 +0000
commit8624512aa908741ba2795200133eae0d7f4557ea (patch)
treed5d3036fccf2604f4c98dedc11e8adb929d6b52e /fs/isofs/file.c
parent7b8f5d6f1d45d9f9de1d26e7d3c32aa5af11b488 (diff)
Merge with 2.3.48.
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 */
-};