iget_locked et.al.: make sure we don't return bad inodes
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / timer / rockchip,rk3288-timer.txt
1 Rockchip rk3288 timer
2
3 Required properties:
4 - compatible: shall be "rockchip,rk3288-timer"
5 - reg: base address of the timer register starting with TIMERS CONTROL register
6 - interrupts: should contain the interrupts for Timer0
7 - clocks : must contain an entry for each entry in clock-names
8 - clock-names : must include the following entries:
9   "timer", "pclk"
10
11 Example:
12         timer: timer@ff810000 {
13                 compatible = "rockchip,rk3288-timer";
14                 reg = <0xff810000 0x20>;
15                 interrupts = <GIC_SPI 72 IRQ_TYPE_LEVEL_HIGH>;
16                 clocks = <&xin24m>, <&cru PCLK_TIMER>;
17                 clock-names = "timer", "pclk";
18         };