forked from len0rd/rockbox
imx233: increase irq storm threshold
On heavy storage operations (like database update), the ssp dma irq can be fired around ~10000/sec. Change-Id: I0e33df6258e051abd4fe110a0f408a19671cd8ad
This commit is contained in:
parent
68ff43e94b
commit
935d8beab1
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ static isr_t isr_table[INT_SRC_NR_SOURCES] =
|
|||
};
|
||||
|
||||
#define IRQ_STORM_DELAY 100 /* ms */
|
||||
#define IRQ_STORM_THRESHOLD 10000 /* allows irq / delay */
|
||||
#define IRQ_STORM_THRESHOLD 100000 /* allows irq / delay */
|
||||
|
||||
static uint32_t irq_count_old[INT_SRC_NR_SOURCES];
|
||||
static uint32_t irq_count[INT_SRC_NR_SOURCES];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue