concat.h 493 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * MTD device concatenation layer definitions
  4. *
  5. * Copyright © 2002 Robert Kaiser <[email protected]>
  6. */
  7. #ifndef MTD_CONCAT_H
  8. #define MTD_CONCAT_H
  9. struct mtd_info *mtd_concat_create(
  10. struct mtd_info *subdev[], /* subdevices to concatenate */
  11. int num_devs, /* number of subdevices */
  12. const char *name); /* name for the new device */
  13. void mtd_concat_destroy(struct mtd_info *mtd);
  14. #endif