aboutsummaryrefslogtreecommitdiff
path: root/driver/fopdrv.h
diff options
context:
space:
mode:
authorlonkaars <loek@pipeframe.xyz>2024-05-12 15:21:19 +0200
committerlonkaars <loek@pipeframe.xyz>2024-05-12 15:21:19 +0200
commit891595b9307eb2695411d8e32e4addd9cd927ec8 (patch)
treeb24c323ad3e09f05ca75386ac8fef38a6fff3e74 /driver/fopdrv.h
parent6926a88695ce2e9fca51e01a1bf6fded3e4cbcca (diff)
rename folders
Diffstat (limited to 'driver/fopdrv.h')
-rw-r--r--driver/fopdrv.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/driver/fopdrv.h b/driver/fopdrv.h
new file mode 100644
index 0000000..f2ca18c
--- /dev/null
+++ b/driver/fopdrv.h
@@ -0,0 +1,11 @@
+#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 *);
+