avionic design with actual uboot and tooling
submodule of avionic design uboot bootloader and with included tools to get you started , read readme.md and readme-tk1-loader.md
This commit is contained in:
23
u-boot/include/mtd.h
Normal file
23
u-boot/include/mtd.h
Normal file
@@ -0,0 +1,23 @@
|
||||
/*
|
||||
* Copyright (C) 2015 Thomas Chou <thomas@wytron.com.tw>
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0+
|
||||
*/
|
||||
|
||||
#ifndef _MTD_H_
|
||||
#define _MTD_H_
|
||||
|
||||
#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);
|
||||
}
|
||||
|
||||
#endif /* _MTD_H_ */
|
||||
Reference in New Issue
Block a user