diff options
| author | Svyatoslav Ryhel <clamor95@gmail.com> | 2026-05-11 10:48:59 +0300 |
|---|---|---|
| committer | Thierry Reding <treding@nvidia.com> | 2026-05-29 15:36:18 +0300 |
| commit | 774bc2764647cfd6b65727cfa978d809f11df392 (patch) | |
| tree | 6fab6fd997345ff75ecd75bab5a7f2249af1054a | |
| parent | d9c890d753034adcae0f74de578deed60d58233a (diff) | |
| download | linux-774bc2764647cfd6b65727cfa978d809f11df392.tar.xz | |
ARM: tegra: tf600t: Invert accelerometer calibration matrix
IMU calibration matrix used in the device tree is inverted when testing on
the device which results in wrong screen orientation. Invert it to match
the matrix dumped from the device.
Tested-by: Andreas Westman Dorcsak <hedmoo@yahoo.com>
Signed-off-by: Svyatoslav Ryhel <clamor95@gmail.com>
Signed-off-by: Thierry Reding <treding@nvidia.com>
| -rw-r--r-- | arch/arm/boot/dts/nvidia/tegra30-asus-tf600t.dts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm/boot/dts/nvidia/tegra30-asus-tf600t.dts b/arch/arm/boot/dts/nvidia/tegra30-asus-tf600t.dts index 0bebea0cb8c4..5c634b0f3f46 100644 --- a/arch/arm/boot/dts/nvidia/tegra30-asus-tf600t.dts +++ b/arch/arm/boot/dts/nvidia/tegra30-asus-tf600t.dts @@ -1091,9 +1091,9 @@ vdd-supply = <&vdd_3v3_sys>; vddio-supply = <&vdd_1v8_vio>; - mount-matrix = "0", "-1", "0", - "-1", "0", "0", - "0", "0", "-1"; + mount-matrix = "0", "1", "0", + "1", "0", "0", + "0", "0", "1"; /* External I2C interface */ i2c-gate { |
