Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / linux / mtd / concat.h
blobed8dc675521917b14d12a492abe5a7c8f754a8e6
1 /*
2 * MTD device concatenation layer definitions
4 * (C) 2002 Robert Kaiser <rkaiser@sysgo.de>
6 * This code is GPL
8 * $Id: concat.h,v 1.1 2002/03/08 16:34:36 rkaiser Exp $
9 */
11 #ifndef MTD_CONCAT_H
12 #define MTD_CONCAT_H
15 struct mtd_info *mtd_concat_create(
16 struct mtd_info *subdev[], /* subdevices to concatenate */
17 int num_devs, /* number of subdevices */
18 char *name); /* name for the new device */
20 void mtd_concat_destroy(struct mtd_info *mtd);
22 #endif