xref: /rk3399_rockchip-uboot/include/boot_fit.h (revision c41d05c3010e6015c0451a5a0eaa3b341dac0e3e)
1 /*
2  * Copyright (C) 2017 Texas Instruments
3  * Written by Franklin Cooper Jr. <fcooper@ti.com>
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7 
8 /**
9  * locate_dtb_in_fit - Find a DTB matching the board in a FIT image
10  * @fit:	pointer to the FIT image
11  *
12  * @return a pointer to a matching DTB blob if found, NULL otherwise
13  */
14 void *locate_dtb_in_fit(const void *fit);
15