File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -189,10 +189,10 @@ static int ithc_init_device(struct ithc *ithc)
189
189
// Set Latency Tolerance Reporting config. The device will automatically
190
190
// apply these values depending on whether it is active or idle.
191
191
// If active value is too high, DMA buffer data can become truncated.
192
- // By default, we set the active LTR value to 100us , and idle to 100ms.
192
+ // By default, we set the active LTR value to 50us , and idle to 100ms.
193
193
u64 active_ltr_ns = ithc_active_ltr_us >= 0 ? (u64 )ithc_active_ltr_us * 1000
194
194
: cfg .has_config && cfg .has_active_ltr ? (u64 )cfg .active_ltr << 10
195
- : 100 * 1000 ;
195
+ : 50 * 1000 ;
196
196
u64 idle_ltr_ns = ithc_idle_ltr_us >= 0 ? (u64 )ithc_idle_ltr_us * 1000
197
197
: cfg .has_config && cfg .has_idle_ltr ? (u64 )cfg .idle_ltr << 10
198
198
: 100 * 1000 * 1000 ;
You can’t perform that action at this time.
0 commit comments