source: svn/trunk/newcon3bcm2_21bu/toolchain/mips-linux-uclibc/include/linux/mtd/concat.h

Last change on this file was 2, checked in by jglee, 11 years ago

first commit

  • Property svn:executable set to *
File size: 457 bytes
Line 
1/*
2 * MTD device concatenation layer definitions
3 *
4 * (C) 2002 Robert Kaiser <rkaiser@sysgo.de>
5 *
6 * This code is GPL
7 *
8 */
9
10#ifndef MTD_CONCAT_H
11#define MTD_CONCAT_H
12
13
14struct mtd_info *mtd_concat_create(
15    struct mtd_info *subdev[],  /* subdevices to concatenate */
16    int num_devs,               /* number of subdevices      */
17    char *name);                /* name for the new device   */
18
19void mtd_concat_destroy(struct mtd_info *mtd);
20
21#endif
22
Note: See TracBrowser for help on using the repository browser.