diff options
| author | Russell King <rmk@flint.arm.linux.org.uk> | 2002-10-14 23:25:35 +0100 |
|---|---|---|
| committer | Russell King <rmk@flint.arm.linux.org.uk> | 2002-10-14 23:25:35 +0100 |
| commit | 0ebd6ce0f49a6a8a7623ede60befa51a575271ce (patch) | |
| tree | a6b5920abe1dd1b09eb715fe15968bb050aec48e /include/linux/mtd/concat.h | |
| parent | 71660e156c8516c75e63d40d9f6c19af82340071 (diff) | |
[MTD] Update 2.5 MTD code from MTD CVS and ARM tree
This cset updates the 2.5 MTD code from the MTD CVS. David Woodhouse
is happy with me sending this.
Summary of changes:
- Add MTD device concatenation support module.
- Bootldr MTD partition parsing is obsolete, replaced by command-line
based partition information.
- Add support for ARM map drivers:
AUTCPU12, Ceiva, Camelot, Fortunet, edb7312, Impa7, PCI
- Add support for PCMCIA memory cards
- Update help texts for:
Ocelot, ITE QED-4N-S01B, Flaga
Please note that this does not completely synchronise the 2.5 kernel
tree with MTD CVS.
Diffstat (limited to 'include/linux/mtd/concat.h')
| -rw-r--r-- | include/linux/mtd/concat.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/include/linux/mtd/concat.h b/include/linux/mtd/concat.h new file mode 100644 index 000000000000..ed8dc6755219 --- /dev/null +++ b/include/linux/mtd/concat.h @@ -0,0 +1,23 @@ +/* + * MTD device concatenation layer definitions + * + * (C) 2002 Robert Kaiser <rkaiser@sysgo.de> + * + * This code is GPL + * + * $Id: concat.h,v 1.1 2002/03/08 16:34:36 rkaiser Exp $ + */ + +#ifndef MTD_CONCAT_H +#define MTD_CONCAT_H + + +struct mtd_info *mtd_concat_create( + struct mtd_info *subdev[], /* subdevices to concatenate */ + int num_devs, /* number of subdevices */ + char *name); /* name for the new device */ + +void mtd_concat_destroy(struct mtd_info *mtd); + +#endif + |
