blob: e3fc8fc4ab641acb46b04387aad537e738ac2391 [file] [log] [blame]
Balint Dobszaybd670742022-03-03 11:38:14 +01001/* SPDX-License-Identifier: BSD-3-Clause */
2/*
3 * Copyright (c) 2022, Arm Limited and Contributors. All rights reserved.
4 */
5
6#include <libfdt.h>
7#include <stdbool.h>
8
9bool dt_get_u32(const void *fdt, int node, const char *prop_name, uint32_t *prop_val);
10bool dt_get_u64(const void *fdt, int node, const char *prop_name, uint64_t *prop_val);