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