xref: /openbmc/u-boot/include/mtd.h (revision a1588ac8)
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
4  */
5 
6 #ifndef _MTD_H_
7 #define _MTD_H_
8 
9 #include <linux/mtd/mtd.h>
10 
11 int mtd_probe(struct udevice *dev);
12 int mtd_probe_devices(void);
13 
14 #endif	/* _MTD_H_ */
15