diff options
| author | Yuval Adam <_@yuv.al> | 2017-08-30 08:25:59 +0000 |
|---|---|---|
| committer | Yuval Adam <_@yuv.al> | 2017-08-30 08:25:59 +0000 |
| commit | 8e4bff4cab0ddac6060645b0715210484d02ff40 (patch) | |
| tree | 3a5c3024371a04692a3a6d9974d001cdff8ebf84 /drivers/staging/staging.c | |
Diffstat (limited to 'drivers/staging/staging.c')
| -rw-r--r-- | drivers/staging/staging.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/drivers/staging/staging.c b/drivers/staging/staging.c new file mode 100644 index 00000000..233e589c --- /dev/null +++ b/drivers/staging/staging.c @@ -0,0 +1,19 @@ +#include <linux/kernel.h> +#include <linux/init.h> +#include <linux/module.h> + +static int __init staging_init(void) +{ + return 0; +} + +static void __exit staging_exit(void) +{ +} + +module_init(staging_init); +module_exit(staging_exit); + +MODULE_AUTHOR("Greg Kroah-Hartman"); +MODULE_DESCRIPTION("Staging Core"); +MODULE_LICENSE("GPL"); |
