1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/ezchip,nps400-ic.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: EZchip NPS Interrupt Controller 8 9maintainers: 10 - Noam Camus <noamc@ezchip.com> 11 12properties: 13 compatible: 14 const: ezchip,nps400-ic 15 16 interrupt-controller: true 17 18 '#interrupt-cells': 19 const: 1 20 21required: 22 - compatible 23 - interrupt-controller 24 - '#interrupt-cells' 25 26additionalProperties: false 27 28examples: 29 - | 30 interrupt-controller { 31 compatible = "ezchip,nps400-ic"; 32 interrupt-controller; 33 #interrupt-cells = <1>; 34 }; 35