mtd.h 327 B

12345678910111213141516
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
  4. */
  5. #ifndef _MTD_H_
  6. #define _MTD_H_
  7. #include <linux/mtd/mtd.h>
  8. int mtd_probe(struct udevice *dev);
  9. int mtd_probe_devices(void);
  10. void board_mtdparts_default(const char **mtdids, const char **mtdparts);
  11. #endif /* _MTD_H_ */