summaryrefslogtreecommitdiffstats
path: root/payloads/libpayload/include/fmap.h
blob: 53ebe23dcb58652ab1dd754ed6e6a166dcab6d74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* SPDX_License-Identifier: BSD-3-Clause */

#ifndef _FMAP_H
#define _FMAP_H

#include <commonlib/bsd/cb_err.h>
#include <stddef.h>

/* Looks for area with |name| in FlashMap. Requires lib_sysinfo.fmap_cache. */
cb_err_t fmap_locate_area(const char *name, size_t *offset, size_t *size);

#endif /* _FMAP_H */