Skip to content

Commit 42da38b

Browse files
aviscontifabiobaltieri
authored andcommitted
tests: sensors: build_all: fix warnings on i2c
Fix warnings generated when performing sensor drivers build test due to typos in i2c DT definition. Signed-off-by: Armando Visconti <[email protected]>
1 parent 8284ea7 commit 42da38b

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

tests/drivers/build_all/sensor/i2c.dtsi

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1024,53 +1024,53 @@ test_i2c_lis2dux12: lis2dux12@8a {
10241024
status = "okay";
10251025
};
10261026

1027-
test_i2c_iis328dq: iis328dq@8a {
1027+
test_i2c_iis328dq: iis328dq@8b {
10281028
compatible = "st,iis328dq";
10291029
status = "okay";
1030-
reg = <0x8a>;
1030+
reg = <0x8b>;
10311031
int2-gpios = <&test_gpio 0 0>;
10321032
threshold-int-pad = <2>;
10331033
};
10341034

1035-
test_i2c_nct75: test_i2c_nct75@8b {
1035+
test_i2c_nct75: test_i2c_nct75@8c {
10361036
compatible = "onnn,nct75";
1037-
reg = <0x8b>;
1037+
reg = <0x8c>;
10381038
status = "okay";
10391039
};
10401040

1041-
test_i2c_tmp114: tmp114@8c {
1041+
test_i2c_tmp114: tmp114@8d {
10421042
compatible = "ti,tmp114";
1043-
reg = <0x8c>;
1043+
reg = <0x8d>;
10441044
};
10451045

1046-
test_i2c_ina226: ina226@8d {
1046+
test_i2c_ina226: ina226@8e {
10471047
compatible = "ti,ina226";
1048-
reg = <0x8d>;
1048+
reg = <0x8e>;
10491049
current-lsb-microamps = <5000>;
10501050
rshunt-micro-ohms = <500>;
10511051
};
10521052

1053-
test_i2c_shtc1: shtc1@8e {
1053+
test_i2c_shtc1: shtc1@8f {
10541054
compatible = "sensirion,shtc1", "sensirion,shtcx";
1055-
reg = <0x8e>;
1055+
reg = <0x8f>;
10561056
measure-mode = "low-power";
10571057
clock-stretching;
10581058
};
10591059

1060-
test_i2c_lm95234: lm95234@8f {
1060+
test_i2c_lm95234: lm95234@90 {
10611061
compatible = "national,lm95234";
1062-
reg = <0x8f>;
1062+
reg = <0x90>;
10631063
status = "okay";
10641064
};
10651065

1066-
test_i2c_sht21@90 {
1066+
test_i2c_sht21@91 {
10671067
compatible = "sensirion,sht21";
1068-
reg = <0x90>;
1068+
reg = <0x91>;
10691069
};
10701070

1071-
test_i2c_lsm9ds1: lsm9ds1@91 {
1071+
test_i2c_lsm9ds1: lsm9ds1@92 {
10721072
compatible = "st,lsm9ds1";
1073-
reg = <0x8e>;
1073+
reg = <0x92>;
10741074
};
10751075

10761076
test_i2c_icm42670: icm42670@92 {

0 commit comments

Comments
 (0)