treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / Documentation / devicetree / bindings / serial / ingenic,uart.txt
blob24ed8769f4afd5f6e5e448998eac9f244c893847
1 * Ingenic SoC UART
3 Required properties:
4 - compatible : One of:
5   - "ingenic,jz4740-uart",
6   - "ingenic,jz4760-uart",
7   - "ingenic,jz4770-uart",
8   - "ingenic,jz4775-uart",
9   - "ingenic,jz4780-uart",
10   - "ingenic,x1000-uart".
11 - reg : offset and length of the register set for the device.
12 - interrupts : should contain uart interrupt.
13 - clocks : phandles to the module & baud clocks.
14 - clock-names: tuple listing input clock names.
15         Required elements: "baud", "module"
17 Example:
19 uart0: serial@10030000 {
20         compatible = "ingenic,jz4740-uart";
21         reg = <0x10030000 0x100>;
23         interrupt-parent = <&intc>;
24         interrupts = <9>;
26         clocks = <&ext>, <&cgu JZ4740_CLK_UART0>;
27         clock-names = "baud", "module";