diff options
| author | Quentin Schulz <[email protected]> | 2025-10-28 17:57:36 +0100 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2025-11-02 12:15:23 -0600 |
| commit | 165e4634c31cecdf4888de115a05e4ad04bc7961 (patch) | |
| tree | ab5a8146a38f1fc6ecd2e7ce12b508905fb2dd17 /scripts/objdiff | |
| parent | 0d457380a02422e07833c3a0520516c358eeb9fa (diff) | |
rockchip: rk3399: fix TIMER_FMODE constant
The free running mode is 0 at bit offset 1. User mode is 1 at bit offset
1. Currently, free running mode is 1 at offset 0, which is already the
case thanks to TIME_EN.
So, this essentially does not change the actual value written to the
register as it is TIME_EN | TIMER_FMODE which currently is 0x1 | BIT(0)
= 0b1, and will become 0x1 | (0 << 1) = 0b1.
Signed-off-by: Quentin Schulz <[email protected]>
Reviewed-by: Kever Yang <[email protected]>
Diffstat (limited to 'scripts/objdiff')
0 files changed, 0 insertions, 0 deletions
