if (s->claimed[pending_num] & 1 << (irq % 32)) {
/*
- * The interrupt has been claimed, but not compelted.
+ * The interrupt has been claimed, but not completed.
* The pending bit can't be set.
*/
return;
int pending_num = s->claim / 32;
s->pending[pending_num] &= ~(1 << (s->claim % 32));
- /* Set the interrupt as claimed, but not compelted */
+ /* Set the interrupt as claimed, but not completed */
s->claimed[pending_num] |= 1 << (s->claim % 32);
/* Return the current claimed interrupt */