mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 04:26:41 +07:00
6db6bd479d
There are currently two broken bindings descriptions for RTC:
maxim,ds3231.txt
pcf8563.txt
They broke because of a improper RST documentation conversion with
commit 8c27ceff36
("docs: fix locations of several documents that got
moved") and now reference to a non-existing file:
Documentation/devicetree/bindings/i2c/trivial-admin-guide/devices.rst
However, the original reference to i2c/trivial-devices should have never
been made in the first place.
This change fixes this issue by replacing with correct descriptions.
Reported-by: Wolfram Sang <wsa@the-dreams.de>
Cc: Alexandre Belloni <alexandre.belloni@free-electrons.com>
Cc: Heiko Schocher <hs@denx.de>
Cc: Rob Herring <robh@kernel.org>
Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
27 lines
457 B
Plaintext
27 lines
457 B
Plaintext
* Philips PCF8563/Epson RTC8564 Real Time Clock
|
|
|
|
Philips PCF8563/Epson RTC8564 Real Time Clock
|
|
|
|
Required properties:
|
|
- compatible: Should contain "nxp,pcf8563".
|
|
- reg: I2C address for chip.
|
|
|
|
Optional property:
|
|
- #clock-cells: Should be 0.
|
|
- clock-output-names:
|
|
overwrite the default clock name "pcf8563-clkout"
|
|
|
|
Example:
|
|
|
|
pcf8563: pcf8563@51 {
|
|
compatible = "nxp,pcf8563";
|
|
reg = <0x51>;
|
|
#clock-cells = <0>;
|
|
};
|
|
|
|
device {
|
|
...
|
|
clocks = <&pcf8563>;
|
|
...
|
|
};
|