1. NAME

disable_irq_nosync - disable an irq without waiting

2. SYNOPSIS

void disable_irq_nosync(unsigned int  irq );

3. ARGUMENTS

irq
    Interrupt to disable

4. DESCRIPTION

Disable the selected interrupt line. Disables and Enables are nested. Unlike disable_irq, this function does not ensure existing instances of the IRQ handler have completed before returning.

This function may be called from IRQ context.

5. AUTHORS

Thomas Gleixner <>
    Author.

Ingo Molnar <>
    Author.

6. COPYRIGHT