mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-27 20:35:12 +07:00
01dc6992b3
Fix typo in interrupt-names Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
18 lines
540 B
Plaintext
18 lines
540 B
Plaintext
* Marvell Real Time Clock controller
|
|
|
|
Required properties:
|
|
- compatible: should be "mrvl,sa1100-rtc"
|
|
- reg: physical base address of the controller and length of memory mapped
|
|
region.
|
|
- interrupts: Should be two. The first interrupt number is the rtc alarm
|
|
interrupt and the second interrupt number is the rtc hz interrupt.
|
|
- interrupt-names: Assign name of irq resource.
|
|
|
|
Example:
|
|
rtc: rtc@d4010000 {
|
|
compatible = "mrvl,mmp-rtc";
|
|
reg = <0xd4010000 0x1000>;
|
|
interrupts = <5>, <6>;
|
|
interrupt-names = "rtc 1Hz", "rtc alarm";
|
|
};
|