aboutsummaryrefslogtreecommitdiff
path: root/driver/fopdrv.h
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2024-05-14 19:59:49 +0200
committerlonkaars <loek@pipeframe.xyz>2024-05-14 19:59:49 +0200
commit44a5c2b2d47dde5215171966eeef0acdadcaded3 (patch)
tree3f7e79a6548a4b287037c7f03c81de960b69d99b /driver/fopdrv.h
parent469db2b98acd9f016197c00f2fd88a9fcc66d75c (diff)
remove old character driver
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 *);
-