mirror of
https://github.com/DigitalDevices/dddvb.git
synced 2025-03-01 10:35:23 +00:00
initial commit from dddvb-0.9.19c
This commit is contained in:
24
ddip/ddip.c
Normal file
24
ddip/ddip.c
Normal file
@@ -0,0 +1,24 @@
|
||||
#include <linux/module.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/interrupt.h>
|
||||
|
||||
|
||||
static __init int init_ddip(void)
|
||||
{
|
||||
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static __exit void exit_ddip(void)
|
||||
{
|
||||
}
|
||||
|
||||
module_init(init_ddip);
|
||||
module_exit(exit_ddip);
|
||||
|
||||
MODULE_DESCRIPTION("GPL");
|
||||
MODULE_AUTHOR("Metzler Brothers Systementwicklung");
|
||||
MODULE_LICENSE("GPL");
|
||||
MODULE_VERSION("0.1");
|
||||
|
Reference in New Issue
Block a user