start io subsystem

This commit is contained in:
2025-06-14 22:16:35 +01:00
parent 34ea87ded0
commit 49d5847980
8 changed files with 95 additions and 17 deletions

12
driver/io.c Normal file
View File

@ -0,0 +1,12 @@
#include <linux/module.h>
#include <linux/init.h>
#include "io.h"
int io_init(void) {
return 0;
}
void io_exit(void) {
}