Files
kernel/include/linux/mtd/concat.h
T

21 lines
493 B
C
Raw Normal View History

/* SPDX-License-Identifier: GPL-2.0-or-later */
2005-04-16 15:20:36 -07:00
/*
* MTD device concatenation layer definitions
*
2010-08-08 20:58:20 +01:00
* Copyright © 2002 Robert Kaiser <rkaiser@sysgo.de>
2005-04-16 15:20:36 -07:00
*/
#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 */
const char *name); /* name for the new device */
2005-04-16 15:20:36 -07:00
void mtd_concat_destroy(struct mtd_info *mtd);
#endif