mirror of
https://github.com/torvalds/linux.git
synced 2024-12-29 14:21:47 +00:00
f516fb704d
Clean-up incorrect indentation, extra spaces, long lines, and missing EOF newline in schema files. Most of the clean-ups are for list indentation which should always be 2 spaces more than the preceding keyword. Found with yamllint (which I plan to integrate into the checks). Cc: linux-arm-kernel@lists.infradead.org Cc: linux-clk@vger.kernel.org Cc: dri-devel@lists.freedesktop.org Cc: linux-spi@vger.kernel.org Cc: linux-gpio@vger.kernel.org Cc: linux-remoteproc@vger.kernel.org Cc: linux-hwmon@vger.kernel.org Cc: linux-i2c@vger.kernel.org Cc: linux-fbdev@vger.kernel.org Cc: linux-iio@vger.kernel.org Cc: linux-input@vger.kernel.org Cc: linux-pm@vger.kernel.org Cc: linux-media@vger.kernel.org Cc: alsa-devel@alsa-project.org Cc: linux-mmc@vger.kernel.org Cc: linux-mtd@lists.infradead.org Cc: netdev@vger.kernel.org Cc: linux-rtc@vger.kernel.org Cc: linux-serial@vger.kernel.org Cc: linux-usb@vger.kernel.org Acked-by: Sam Ravnborg <sam@ravnborg.org> Signed-off-by: Rob Herring <robh@kernel.org>
62 lines
1.2 KiB
YAML
62 lines
1.2 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/mtd/arasan,nand-controller.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: Arasan NAND Flash Controller with ONFI 3.1 support device tree bindings
|
|
|
|
allOf:
|
|
- $ref: "nand-controller.yaml"
|
|
|
|
maintainers:
|
|
- Naga Sureshkumar Relli <naga.sureshkumar.relli@xilinx.com>
|
|
|
|
properties:
|
|
compatible:
|
|
items:
|
|
- enum:
|
|
- xlnx,zynqmp-nand-controller
|
|
- const: arasan,nfc-v3p10
|
|
|
|
reg:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
items:
|
|
- description: Controller clock
|
|
- description: NAND bus clock
|
|
|
|
clock-names:
|
|
items:
|
|
- const: controller
|
|
- const: bus
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
"#address-cells": true
|
|
"#size-cells": true
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- clocks
|
|
- clock-names
|
|
- interrupts
|
|
|
|
additionalProperties: true
|
|
|
|
examples:
|
|
- |
|
|
nfc: nand-controller@ff100000 {
|
|
compatible = "xlnx,zynqmp-nand-controller", "arasan,nfc-v3p10";
|
|
reg = <0xff100000 0x1000>;
|
|
clock-names = "controller", "bus";
|
|
clocks = <&clk200>, <&clk100>;
|
|
interrupt-parent = <&gic>;
|
|
interrupts = <0 14 4>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
};
|