#include <linux/module.h>
#include <linux/types.h>
#include <linux/init.h>
#include <linux/kernel.h>
#include <linux/string.h>
#include <linux/slab.h>
#include <linux/ioport.h>
#include <linux/device.h>
#include <linux/platform_device.h>
#include <linux/mtd/mtd.h>
#include <linux/mtd/map.h>
#include <linux/mtd/partitions.h>
#include <asm/io.h>
#include <asm/mach/flash.h>
#include <linux/reboot.h>
Go to the source code of this file.
#define BYTE0 |
( |
|
h | ) |
((h) & 0xFF) |
#define BYTE1 |
( |
|
h | ) |
(((h) >> 8) & 0xFF) |
MODULE_ALIAS |
( |
"platform:IXP4XX-Flash" |
| ) |
|
MODULE_AUTHOR |
( |
"Deepak Saxena" |
| ) |
|
MODULE_DESCRIPTION |
( |
"MTD map driver for Intel IXP4xx systems" |
| ) |
|
module_platform_driver |
( |
ixp4xx_flash_driver |
| ) |
|