2008-03-04 18:22:31 +00:00
|
|
|
#include <sys/sysmacros.h>
|
2008-02-27 21:56:51 +00:00
|
|
|
#include "config.h"
|
2008-02-27 19:09:51 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Generic support
|
|
|
|
*/
|
|
|
|
|
|
|
|
int p0 = 0;
|
|
|
|
EXPORT_SYMBOL(p0);
|
2008-02-27 21:56:51 +00:00
|
|
|
|
|
|
|
static int __init spl_init(void)
|
|
|
|
{
|
|
|
|
printk(KERN_INFO "spl: Loaded Solaris Porting Layer v%s\n", VERSION);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void spl_fini(void)
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
module_init(spl_init);
|
|
|
|
module_exit(spl_fini);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Lawrence Livermore National Labs");
|
|
|
|
MODULE_DESCRIPTION("Solaris Porting Layer");
|
|
|
|
MODULE_LICENSE("GPL");
|