If a sensor is connected to I2C bus then both the following device tree entries will workt or only entry1 will work.
entry1:
-------
i2c {
clock-frequency = <200000>;
sensor1@addr {
compatible = "sensor1"
};
};
entry2:
-------
i2c {
clock-frequency = <200000>;
}
sensor1@addr {
compatible = "sensor1"
};