Linux Kernel
3.7.1
|
#include <linux/init.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/err.h>
#include <linux/mtd/mtd.h>
#include <linux/slab.h>
#include <linux/sched.h>
#include <linux/random.h>
Go to the source code of this file.
Macros | |
#define | PRINT_PREF KERN_INFO "mtd_speedtest: " |
Functions | |
module_param (dev, int, S_IRUGO) | |
MODULE_PARM_DESC (dev,"MTD device number to use") | |
module_param (count, int, S_IRUGO) | |
MODULE_PARM_DESC (count,"Maximum number of eraseblocks to use ""(0 means use all)") | |
module_init (mtd_speedtest_init) | |
module_exit (mtd_speedtest_exit) | |
MODULE_DESCRIPTION ("Speed test module") | |
MODULE_AUTHOR ("Adrian Hunter") | |
MODULE_LICENSE ("GPL") | |
#define PRINT_PREF KERN_INFO "mtd_speedtest: " |
Definition at line 31 of file mtd_speedtest.c.
MODULE_AUTHOR | ( | "Adrian Hunter" | ) |
module_exit | ( | mtd_speedtest_exit | ) |
module_init | ( | mtd_speedtest_init | ) |
MODULE_LICENSE | ( | "GPL" | ) |