f2fs: fix a mount fail for wrong next_scan_nid
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / timer / cortina,gemini-timer.txt
1 Cortina Systems Gemini timer
2
3 This timer is embedded in the Cortina Systems Gemini SoCs.
4
5 Required properties:
6
7 - compatible : Must be "cortina,gemini-timer"
8 - reg : Should contain registers location and length
9 - interrupts : Should contain the three timer interrupts with
10   flags for rising edge
11 - syscon : a phandle to the global Gemini system controller
12
13 Example:
14
15 timer@43000000 {
16         compatible = "cortina,gemini-timer";
17         reg = <0x43000000 0x1000>;
18         interrupts = <14 IRQ_TYPE_EDGE_RISING>, /* Timer 1 */
19                    <15 IRQ_TYPE_EDGE_RISING>, /* Timer 2 */
20                    <16 IRQ_TYPE_EDGE_RISING>; /* Timer 3 */
21         syscon = <&syscon>;
22 };