#include <linux/kernel.h>
#include <linux/module.h>
#include <asm/errno.h>
#include <asm/io.h>
#include <asm/uaccess.h>
#include <linux/delay.h>
#include <linux/slab.h>
#include <linux/init.h>
#include <linux/hdreg.h>
#include <linux/blkdev.h>
#include <linux/kmod.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/nand.h>
#include <linux/mtd/nftl.h>
#include <linux/mtd/blktrans.h>
Go to the source code of this file.
|
int | nftl_read_oob (struct mtd_info *mtd, loff_t offs, size_t len, size_t *retlen, uint8_t *buf) |
|
int | nftl_write_oob (struct mtd_info *mtd, loff_t offs, size_t len, size_t *retlen, uint8_t *buf) |
|
| module_init (init_nftl) |
|
| module_exit (cleanup_nftl) |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_AUTHOR ("David Woodhouse <[email protected]>, Fabrice Bellard <[email protected]> et al.") |
|
| MODULE_DESCRIPTION ("Support code for NAND Flash Translation Layer, used on M-Systems DiskOnChip 2000 and Millennium") |
|
| MODULE_ALIAS_BLOCKDEV_MAJOR (NFTL_MAJOR) |
|
MODULE_AUTHOR |
( |
"David Woodhouse <[email protected]> |
, |
|
|
Fabrice Bellard< fabrice.bellard @netgem.com > et al." |
|
|
) |
| |
module_exit |
( |
cleanup_nftl |
| ) |
|
module_init |
( |
init_nftl |
| ) |
|