OSHW-DEIMOS/SOFTWARE/A64-TERES/linux-a64/modules/nand/sun8iw10p1/nand_interface.c
Dimitar Gamishev f9b0e7a283 linux
2017-10-13 14:07:04 +03:00

37 lines
954 B
C

/*
* nand_interface.c
* (C) Copyright 2007-2011
* Reuuimlla Technology Co., Ltd. <www.reuuimllatech.com>
* huangxin <huangxin@Reuuimllatech.com>
*
* some simple description for this code
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; either version 2 of
* the License, or (at your option) any later version.
*
*/
#include <linux/init.h>
#include <linux/module.h>
#include "include/nand_include.h"
static int __init init_nand_libmodule(void)
{
//printk("hello:%s,%d\n", __func__, __LINE__);
//printk("hello:%s,%d\n", __func__, __LINE__);
nand_init();
return 0;
}
module_init(init_nand_libmodule);
static void __exit exit_nand_libmodule(void)
{
nand_exit();
}
module_exit(exit_nand_libmodule);
MODULE_AUTHOR("Soft-Reuuimlla");
MODULE_DESCRIPTION("User mode CEDAR device interface");
MODULE_LICENSE("GPL");