pcmciamtd.c (800f65bba8d2030b3fef62850e203f9f176625a8) pcmciamtd.c (ac8b422838046ffc26be4874a3cbae0d313f4209)
1/*
2 * pcmciamtd.c - MTD driver for PCMCIA flash memory cards
3 *
4 * Author: Simon Evans <spse@secret.org.uk>
5 *
6 * Copyright (C) 2002 Simon Evans
7 *
8 * Licence: GPL
9 *
10 */
11
12#include <linux/module.h>
13#include <linux/slab.h>
14#include <linux/timer.h>
15#include <linux/init.h>
16#include <asm/io.h>
17#include <asm/system.h>
18
1/*
2 * pcmciamtd.c - MTD driver for PCMCIA flash memory cards
3 *
4 * Author: Simon Evans <spse@secret.org.uk>
5 *
6 * Copyright (C) 2002 Simon Evans
7 *
8 * Licence: GPL
9 *
10 */
11
12#include <linux/module.h>
13#include <linux/slab.h>
14#include <linux/timer.h>
15#include <linux/init.h>
16#include <asm/io.h>
17#include <asm/system.h>
18
19#include <pcmcia/cs_types.h>
20#include <pcmcia/cs.h>
21#include <pcmcia/cistpl.h>
22#include <pcmcia/ds.h>
23
24#include <linux/mtd/map.h>
25#include <linux/mtd/mtd.h>
26
27#ifdef CONFIG_MTD_DEBUG

--- 775 unchanged lines hidden ---
19#include <pcmcia/cs.h>
20#include <pcmcia/cistpl.h>
21#include <pcmcia/ds.h>
22
23#include <linux/mtd/map.h>
24#include <linux/mtd/mtd.h>
25
26#ifdef CONFIG_MTD_DEBUG

--- 775 unchanged lines hidden ---