]> asedeno.scripts.mit.edu Git - linux.git/blobdiff - kernel/irq_work.c
HID: wacom: wacom_wac_collection() is local to wacom_wac.c
[linux.git] / kernel / irq_work.c
index 40e9d739c169d15a361c8d6d11f674a20783cce8..6b7cdf17ccf890c8c1597eb2a70dea2ace5e46db 100644 (file)
@@ -36,7 +36,7 @@ static bool irq_work_claim(struct irq_work *work)
         */
        flags = work->flags & ~IRQ_WORK_PENDING;
        for (;;) {
-               nflags = flags | IRQ_WORK_FLAGS;
+               nflags = flags | IRQ_WORK_CLAIMED;
                oflags = cmpxchg(&work->flags, flags, nflags);
                if (oflags == flags)
                        break;