]> git.proxmox.com Git - mirror_spl-debian.git/blame - modules/spl/spl-generic.c
Stub out some missing headers which are expected. I'll fill
[mirror_spl-debian.git] / modules / spl / spl-generic.c
CommitLineData
f4b37741 1#include <sys/generic.h>
70eadc19 2#include "config.h"
f1b59d26 3
4/*
5 * Generic support
6 */
7
8int p0 = 0;
9EXPORT_SYMBOL(p0);
70eadc19 10
11static int __init spl_init(void)
12{
13 printk(KERN_INFO "spl: Loaded Solaris Porting Layer v%s\n", VERSION);
14 return 0;
15}
16
17static void spl_fini(void)
18{
19 return;
20}
21
22module_init(spl_init);
23module_exit(spl_fini);
24
25MODULE_AUTHOR("Lawrence Livermore National Labs");
26MODULE_DESCRIPTION("Solaris Porting Layer");
27MODULE_LICENSE("GPL");