/* SPDX-License-Identifier: GPL-2.0+ */ /* * Copyright (C) 2019-2022 Bootlin * Author: Paul Kocialkowski <[email protected]> */ #ifndef _LOGICVC_OF_H_ #define _LOGICVC_OF_H_ enum logicvc_of_property_index { … }; struct logicvc_of_property_sv { … }; struct logicvc_of_property { … }; int logicvc_of_property_parse_u32(struct device_node *of_node, unsigned int index, u32 *target); void logicvc_of_property_parse_bool(struct device_node *of_node, unsigned int index, bool *target); bool logicvc_of_node_is_layer(struct device_node *of_node); #endif