Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ddi/irq.c

    r30f1a25 ra35b458  
    141141{
    142142        irq_spinlock_lock(l, false);
    143         ht_link_t *first = hash_table_find(h, &inr);
    144         for (ht_link_t *lnk = first; lnk;
    145             lnk = hash_table_find_next(h, first, lnk)) {
     143        for (ht_link_t *lnk = hash_table_find(h, &inr); lnk;
     144            lnk = hash_table_find_next(h, lnk)) {
    146145                irq_t *irq = hash_table_get_inst(lnk, irq_t, link);
    147146                irq_spinlock_lock(&irq->lock, false);
Note: See TracChangeset for help on using the changeset viewer.