diff options
| author | Gabe Black <[email protected]> | 2012-10-25 16:31:04 +0000 |
|---|---|---|
| committer | Gerald Van Baren <[email protected]> | 2012-11-12 23:14:57 -0500 |
| commit | 79289c0b5ff4a8c7869d7ca629cddc660dd06095 (patch) | |
| tree | 8904a22ba56463d5ed9b3aef3f15765eded700d4 /include | |
| parent | 7cde397b21a347134a39c40e24355a0e438adae3 (diff) | |
fdt: Add function to read boolean property
Signed-off-by: Vincent Palatin <[email protected]>
Commit-Ready: Vincent Palatin <[email protected]>
Commit-Ready: Gabe Black <[email protected]>
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/fdtdec.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/fdtdec.h b/include/fdtdec.h index f8a4e94186d..a37cf54a935 100644 --- a/include/fdtdec.h +++ b/include/fdtdec.h @@ -399,6 +399,16 @@ int fdtdec_get_config_int(const void *blob, const char *prop_name, int default_val); /** + * Look in the FDT for a config item with the given name + * and return whether it exists. + * + * @param blob FDT blob + * @param prop_name property name to look up + * @return 1, if it exists, or 0 if not + */ +int fdtdec_get_config_bool(const void *blob, const char *prop_name); + +/** * Look in the FDT for a config item with the given name and return its value * as a string. * |
