kernel-doc: fix new warnings in debugfs
[linux/fpc-iii.git] / Documentation / devicetree / bindings / net / can / fsl-flexcan.txt
blob1ad80d5865a9848c10869814b0cc32118d093fc9
1 Flexcan CAN contoller on Freescale's ARM and PowerPC system-on-a-chip (SOC).
3 Required properties:
5 - compatible : Should be "fsl,<processor>-flexcan"
7   An implementation should also claim any of the following compatibles
8   that it is fully backwards compatible with:
10   - fsl,p1010-flexcan
12 - reg : Offset and length of the register set for this device
13 - interrupts : Interrupt tuple for this device
14 - clock-frequency : The oscillator frequency driving the flexcan device
16 Example:
18         can@1c000 {
19                 compatible = "fsl,p1010-flexcan";
20                 reg = <0x1c000 0x1000>;
21                 interrupts = <48 0x2>;
22                 interrupt-parent = <&mpic>;
23                 clock-frequency = <200000000>; // filled in by bootloader
24         };