diff options
| author | Rosen Penev | 2024-12-16 22:15:08 +0000 |
|---|---|---|
| committer | Hauke Mehrtens | 2025-09-11 23:20:49 +0000 |
| commit | d13c3200eaa703f3e0ac622e23197bc85d09cd0a (patch) | |
| tree | f8faa7a87d22ee8339cda3253e6303d6017ee6e1 | |
| parent | 442f91c1174dc7a54cfe607b78b92532d2ef0544 (diff) | |
| download | openwrt-d13c3200eaa703f3e0ac622e23197bc85d09cd0a.tar.gz | |
ath79: fix calibration size for AR9285
These devices use AR9285, which uses 1f8 as the calibration size, not
440 like newer chips do. Actually the driver mandates a minimum of 200.
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Link: https://github.com/openwrt/openwrt/pull/19863
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
| -rw-r--r-- | target/linux/ath79/dts/ar7240_openmesh_om2p-v1.dts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ath79/dts/ar7240_openmesh_om2p-v1.dts b/target/linux/ath79/dts/ar7240_openmesh_om2p-v1.dts index 71664094f3..36994222a5 100644 --- a/target/linux/ath79/dts/ar7240_openmesh_om2p-v1.dts +++ b/target/linux/ath79/dts/ar7240_openmesh_om2p-v1.dts @@ -145,7 +145,7 @@ }; calibration_art_1000: calibration@1000 { - reg = <0x1000 0x440>; + reg = <0x1000 0x200>; }; }; }; |