migrate: to gitea
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
#include <linux/module.h>
|
||||
#include <linux/init.h>
|
||||
|
||||
static int __init boat_init(void)
|
||||
{
|
||||
printk("boat driver: module loaded\n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void __exit boat_exit(void)
|
||||
{
|
||||
printk("boat driver: module unloaded\n");
|
||||
}
|
||||
|
||||
module_init(boat_init);
|
||||
module_exit(boat_exit);
|
||||
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_AUTHOR("verade");
|
||||
MODULE_DESCRIPTION("Driver for the Big Boat Speaker :3");
|
||||
Reference in New Issue
Block a user