Skip to content

Commit 0033bed

Browse files
committed
icm4268x: fix typo on ODR attribute for 16k
Otherwise this setting will be ineligible through run-time attribute configuration. Signed-off-by: Luis Ubieda <[email protected]>
1 parent dff24c8 commit 0033bed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/sensor/tdk/icm4268x/icm4268x.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ static inline void icm4268x_accel_reg_to_hz(uint8_t odr, struct sensor_value *ou
173173
out->val2 = 0;
174174
return;
175175
case ICM4268X_DT_ACCEL_ODR_16000:
176-
out->val1 = 1600;
176+
out->val1 = 16000;
177177
out->val2 = 0;
178178
return;
179179
case ICM4268X_DT_ACCEL_ODR_8000:

0 commit comments

Comments
 (0)