aboutsummaryrefslogtreecommitdiff
path: root/driver/fopdrv.h
diff options
context:
space:
mode:
Diffstat (limited to 'driver/fopdrv.h')
-rw-r--r--driver/fopdrv.h11
1 files changed, 0 insertions, 11 deletions
diff --git a/driver/fopdrv.h b/driver/fopdrv.h
deleted file mode 100644
index f2ca18c..0000000
--- a/driver/fopdrv.h
+++ /dev/null
@@ -1,11 +0,0 @@
-#pragma once
-
-#include <linux/fs.h>
-#include <linux/types.h>
-
-// declarations copied from linux/fs.h
-ssize_t fop_read(struct file *, char __user *, size_t, loff_t *);
-ssize_t fop_write(struct file *, const char __user *, size_t, loff_t *);
-int fop_open(struct inode *, struct file *);
-int fop_release(struct inode *, struct file *);
-