summaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/writing-schema.rst (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-01-24dt-bindings: drop type for operating-points-v2Krzysztof Kozlowski15-31/+14
The type for operating-points-v2 property is coming from dtschema (/schemas/opp/opp.yaml), so individual bindings can just use simple "true". Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Link: https://lore.kernel.org/r/20230119131033.117324-1-krzysztof.kozlowski@linaro.org Signed-off-by: Rob Herring <robh@kernel.org>
2023-01-24dt-bindings: soc: socionext,uniphier-soc-glue: Make child node names fixed namesRob Herring1-1/+0
The child nodes 'pinctrl', 'usb-hub', and 'clock-controller' in the socionext,uniphier-soc-glue binding are not patterns, but the full node name, so move them to 'properties'. As patterns, they were missing start and end anchors so any prefix or suffix was allowed. Fixes: 0611adff8b3a ("dt-bindings: soc: socionext: Add UniPhier SoC-glue logic") Reviewed-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com> Link: https://lore.kernel.org/r/20230120020339.3223112-1-robh@kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
2023-01-18dt-bindings: PCI: Convert Rockchip RK3399 PCIe to DT schemaRob Herring6-198/+270
Convert the Rockchip RK3399 PCIe Host/Endpoint controller to DT schema format. Like most dual mode PCI controllers, we need to split the schema into common, host and endpoint schemas. Link: https://lore.kernel.org/r/20221219191209.1975834-1-robh@kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
2023-01-18of/irq: add missing of_node_put() for interrupt parent nodeClément Léger1-3/+9
After calling of_irq_parse_one(), the node provided in the of_phandle_args has a refcount increment by one. Add missing of_node_put in of_irq_get() to decrement the refcount once used. Signed-off-by: Clément Léger <clement.leger@bootlin.com> Link: https://lore.kernel.org/r/20230117144929.423089-1-clement.leger@bootlin.com Signed-off-by: Rob Herring <robh@kernel.org>