Changeset c822026 in mainline for kernel/generic/src/ddi/irq.c
- Timestamp:
- 2009-04-13T21:35:28Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 4ee4046
- Parents:
- 37c312a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ddi/irq.c
r37c312a rc822026 352 352 /** Unlock IRQ structure after hash_table_remove(). 353 353 * 354 * @param lnk 354 * @param lnk Link in the removed and locked IRQ structure. 355 355 */ 356 356 void irq_ht_remove(link_t *lnk) 357 357 { 358 irq_t *irq = hash_table_get_instance(lnk, irq_t, link); 358 irq_t *irq __attribute__((unused)) 359 = hash_table_get_instance(lnk, irq_t, link); 359 360 spinlock_unlock(&irq->lock); 360 361 } … … 425 426 void irq_lin_remove(link_t *lnk) 426 427 { 427 irq_t *irq = hash_table_get_instance(lnk, irq_t, link); 428 irq_t *irq __attribute__((unused)) 429 = hash_table_get_instance(lnk, irq_t, link); 428 430 spinlock_unlock(&irq->lock); 429 431 }
Note:
See TracChangeset
for help on using the changeset viewer.