diff options
author | lonkaars <loek@pipeframe.xyz> | 2024-04-18 15:23:17 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2024-04-18 15:23:17 +0200 |
commit | c83f52365564e70450841b632547f4563920b1fb (patch) | |
tree | eb126f11c1f333860a26f7a60193fdf380225cba /1/fopdrv.h | |
parent | 040e04244229fa0f7af4c15f3d9c4d11e1253996 (diff) |
add character driver fops struct + implementation
Diffstat (limited to '1/fopdrv.h')
-rw-r--r-- | 1/fopdrv.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1/fopdrv.h b/1/fopdrv.h new file mode 100644 index 0000000..f2ca18c --- /dev/null +++ b/1/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 *); + |