colibri_imx6: fix video stdout in default environment
[oweals/u-boot.git] / include / mtd.h
index 3f8c293b00e1bc550443ac176da96c3a94383ddd..b0f8693386e6e3d6e00750502fed6ef297870483 100644 (file)
@@ -1,7 +1,6 @@
+/* SPDX-License-Identifier: GPL-2.0+ */
 /*
  * Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
- *
- * SPDX-License-Identifier:    GPL-2.0+
  */
 
 #ifndef _MTD_H_
@@ -9,15 +8,9 @@
 
 #include <linux/mtd/mtd.h>
 
-/*
- * Get mtd_info structure of the dev, which is stored as uclass private.
- *
- * @dev: The MTD device
- * @return: pointer to mtd_info, NULL on error
- */
-static inline struct mtd_info *mtd_get_info(struct udevice *dev)
-{
-       return dev_get_uclass_priv(dev);
-}
+int mtd_probe(struct udevice *dev);
+int mtd_probe_devices(void);
+
+void board_mtdparts_default(const char **mtdids, const char **mtdparts);
 
 #endif /* _MTD_H_ */