Linux Kernel
3.7.1
|
#include <linux/kernel.h>
#include <linux/slab.h>
#include <linux/module.h>
#include <linux/list.h>
#include <linux/fs.h>
#include <linux/mtd/blktrans.h>
#include <linux/mtd/mtd.h>
#include <linux/blkdev.h>
#include <linux/blkpg.h>
#include <linux/spinlock.h>
#include <linux/hdreg.h>
#include <linux/init.h>
#include <linux/mutex.h>
#include <linux/kthread.h>
#include <asm/uaccess.h>
#include "mtdcore.h"
Go to the source code of this file.
Functions | |
int | mtd_blktrans_cease_background (struct mtd_blktrans_dev *dev) |
EXPORT_SYMBOL_GPL (mtd_blktrans_cease_background) | |
int | add_mtd_blktrans_dev (struct mtd_blktrans_dev *new) |
int | del_mtd_blktrans_dev (struct mtd_blktrans_dev *old) |
int | register_mtd_blktrans (struct mtd_blktrans_ops *tr) |
int | deregister_mtd_blktrans (struct mtd_blktrans_ops *tr) |
module_exit (mtd_blktrans_exit) | |
EXPORT_SYMBOL_GPL (register_mtd_blktrans) | |
EXPORT_SYMBOL_GPL (deregister_mtd_blktrans) | |
EXPORT_SYMBOL_GPL (add_mtd_blktrans_dev) | |
EXPORT_SYMBOL_GPL (del_mtd_blktrans_dev) | |
MODULE_AUTHOR ("David Woodhouse <[email protected]>") | |
MODULE_LICENSE ("GPL") | |
MODULE_DESCRIPTION ("Common interface to block layer for MTD 'translation layers'") | |
int add_mtd_blktrans_dev | ( | struct mtd_blktrans_dev * | new | ) |
Definition at line 336 of file mtd_blkdevs.c.
int del_mtd_blktrans_dev | ( | struct mtd_blktrans_dev * | old | ) |
Definition at line 471 of file mtd_blkdevs.c.
int deregister_mtd_blktrans | ( | struct mtd_blktrans_ops * | tr | ) |
Definition at line 578 of file mtd_blkdevs.c.
EXPORT_SYMBOL_GPL | ( | mtd_blktrans_cease_background | ) |
EXPORT_SYMBOL_GPL | ( | register_mtd_blktrans | ) |
EXPORT_SYMBOL_GPL | ( | deregister_mtd_blktrans | ) |
EXPORT_SYMBOL_GPL | ( | add_mtd_blktrans_dev | ) |
EXPORT_SYMBOL_GPL | ( | del_mtd_blktrans_dev | ) |
MODULE_AUTHOR | ( | "David Woodhouse <[email protected]>" | ) |
MODULE_DESCRIPTION | ( | "Common interface to block layer for MTD 'translation layers'" | ) |
module_exit | ( | mtd_blktrans_exit | ) |
MODULE_LICENSE | ( | "GPL" | ) |
int mtd_blktrans_cease_background | ( | struct mtd_blktrans_dev * | dev | ) |
Definition at line 122 of file mtd_blkdevs.c.
int register_mtd_blktrans | ( | struct mtd_blktrans_ops * | tr | ) |
Definition at line 540 of file mtd_blkdevs.c.