sa1100-flash.c (37ba1b62836d2440980cf553c49556393b05c6cd) | sa1100-flash.c (997302259f386bca8fe1db67c50296ca426c438f) |
---|---|
1/* 2 * Flash memory access on SA11x0 based devices 3 * 4 * (C) 2000 Nicolas Pitre <nico@cam.org> 5 */ 6#include <linux/module.h> 7#include <linux/types.h> 8#include <linux/ioport.h> 9#include <linux/kernel.h> 10#include <linux/init.h> 11#include <linux/errno.h> 12#include <linux/slab.h> 13#include <linux/platform_device.h> 14#include <linux/err.h> | 1/* 2 * Flash memory access on SA11x0 based devices 3 * 4 * (C) 2000 Nicolas Pitre <nico@cam.org> 5 */ 6#include <linux/module.h> 7#include <linux/types.h> 8#include <linux/ioport.h> 9#include <linux/kernel.h> 10#include <linux/init.h> 11#include <linux/errno.h> 12#include <linux/slab.h> 13#include <linux/platform_device.h> 14#include <linux/err.h> |
15#include <linux/io.h> |
|
15 16#include <linux/mtd/mtd.h> 17#include <linux/mtd/map.h> 18#include <linux/mtd/partitions.h> 19#include <linux/mtd/concat.h> 20 21#include <mach/hardware.h> | 16 17#include <linux/mtd/mtd.h> 18#include <linux/mtd/map.h> 19#include <linux/mtd/partitions.h> 20#include <linux/mtd/concat.h> 21 22#include <mach/hardware.h> |
22#include <asm/io.h> | |
23#include <asm/sizes.h> 24#include <asm/mach/flash.h> 25 26#if 0 27/* 28 * This is here for documentation purposes only - until these people 29 * submit their machine types. It will be gone January 2005. 30 */ --- 447 unchanged lines hidden --- | 23#include <asm/sizes.h> 24#include <asm/mach/flash.h> 25 26#if 0 27/* 28 * This is here for documentation purposes only - until these people 29 * submit their machine types. It will be gone January 2005. 30 */ --- 447 unchanged lines hidden --- |