diff options
author | Fabio Estevam <fabio.estevam@nxp.com> | 2016-08-03 00:48:22 -0300 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@free-electrons.com> | 2016-08-31 18:21:34 +0200 |
commit | 59e5e70c9516a0ba34dd5a1a44ed89518cd5eda9 (patch) | |
tree | 74a40493d48e09dec67de76a0303f5fde4257e9e | |
parent | 83ab7dad06b74e390c2ce0e7b5136daf286e1f5e (diff) | |
download | linux-59e5e70c9516a0ba34dd5a1a44ed89518cd5eda9.tar.gz linux-59e5e70c9516a0ba34dd5a1a44ed89518cd5eda9.tar.bz2 linux-59e5e70c9516a0ba34dd5a1a44ed89518cd5eda9.zip |
rtc: ds1390: Fix the SPI chip select number
The number after the '@' symbol should be the SPI chip select
number associated with the ds1390 and it should match the 'reg'
field.
So change it the address to zero, to make it consistent.
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
-rw-r--r-- | Documentation/devicetree/bindings/rtc/dallas,ds1390.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/devicetree/bindings/rtc/dallas,ds1390.txt b/Documentation/devicetree/bindings/rtc/dallas,ds1390.txt index 8e76f2648796..9882b819f173 100644 --- a/Documentation/devicetree/bindings/rtc/dallas,ds1390.txt +++ b/Documentation/devicetree/bindings/rtc/dallas,ds1390.txt @@ -11,7 +11,7 @@ Optional properties: - trickle-diode-disable : Do not use internal trickle charger diode Should be given if internal trickle charger diode should be disabled Example: - ds1390: rtc@68 { + ds1390: rtc@0 { compatible = "dallas,ds1390"; trickle-resistor-ohms = <250>; reg = <0>; |