concat.h 452 B

12345678910111213141516171819
  1. /*
  2. * MTD device concatenation layer definitions
  3. *
  4. * (C) 2002 Robert Kaiser <rkaiser@sysgo.de>
  5. *
  6. * This code is GPL
  7. */
  8. #ifndef MTD_CONCAT_H
  9. #define MTD_CONCAT_H
  10. struct mtd_info *mtd_concat_create(
  11. struct mtd_info *subdev[], /* subdevices to concatenate */
  12. int num_devs, /* number of subdevices */
  13. const char *name); /* name for the new device */
  14. void mtd_concat_destroy(struct mtd_info *mtd);
  15. #endif