diff options
Diffstat (limited to 'driver/fopdrv.h')
-rw-r--r-- | driver/fopdrv.h | 11 |
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 *); - |