Commit 3953505a authored by Grygorii Strashko's avatar Grygorii Strashko Committed by Santosh Shilimkar

ARM: dts: keystone: add cell's information to i2c nodes

I2C nodes should always have #address-cells and #size-cells defined,
otherwise warnings will be produced in case of adding child
nodes to the I2C bus in DT:
Warning (avoid_default_addr_size): Relying on default #address-cells value for /soc/i2c@2530800/pca@20
Warning (avoid_default_addr_size): Relying on default #size-cells value for /soc/i2c@2530800/pca@20

Hence, ensure that all i2cX nodes have #address-cells and #size-cells
properties defined.
Signed-off-by: default avatarGrygorii Strashko <grygorii.strashko@ti.com>
Signed-off-by: default avatarSantosh Shilimkar <santosh.shilimkar@ti.com>
parent 5e014d0c
...@@ -113,6 +113,8 @@ i2c1: i2c@2530400 { ...@@ -113,6 +113,8 @@ i2c1: i2c@2530400 {
clock-frequency = <100000>; clock-frequency = <100000>;
clocks = <&clki2c>; clocks = <&clki2c>;
interrupts = <GIC_SPI 286 IRQ_TYPE_EDGE_RISING>; interrupts = <GIC_SPI 286 IRQ_TYPE_EDGE_RISING>;
#address-cells = <1>;
#size-cells = <0>;
}; };
i2c2: i2c@2530800 { i2c2: i2c@2530800 {
...@@ -121,6 +123,8 @@ i2c2: i2c@2530800 { ...@@ -121,6 +123,8 @@ i2c2: i2c@2530800 {
clock-frequency = <100000>; clock-frequency = <100000>;
clocks = <&clki2c>; clocks = <&clki2c>;
interrupts = <GIC_SPI 289 IRQ_TYPE_EDGE_RISING>; interrupts = <GIC_SPI 289 IRQ_TYPE_EDGE_RISING>;
#address-cells = <1>;
#size-cells = <0>;
}; };
spi0: spi@21000400 { spi0: spi@21000400 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment