13 lines
127 B
C
13 lines
127 B
C
#include <linux/module.h>
|
|
#include <linux/init.h>
|
|
|
|
#include "io.h"
|
|
|
|
int io_init(void) {
|
|
return 0;
|
|
}
|
|
|
|
void io_exit(void) {
|
|
}
|
|
|