rbd: use GFP_NOIO consistently for request allocations
[linux-2.6/btrfs-unstable.git] / include / dt-bindings / interrupt-controller / arm-gic.h
blobd4110d5caa3efde4e0b44402ed8d4d8a00aed6cc
1 /*
2 * This header provides constants for the ARM GIC.
3 */
5 #ifndef _DT_BINDINGS_INTERRUPT_CONTROLLER_ARM_GIC_H
6 #define _DT_BINDINGS_INTERRUPT_CONTROLLER_ARM_GIC_H
8 #include <dt-bindings/interrupt-controller/irq.h>
10 /* interrupt specifier cell 0 */
12 #define GIC_SPI 0
13 #define GIC_PPI 1
16 * Interrupt specifier cell 2.
17 * The flags in irq.h are valid, plus those below.
19 #define GIC_CPU_MASK_RAW(x) ((x) << 8)
20 #define GIC_CPU_MASK_SIMPLE(num) GIC_CPU_MASK_RAW((1 << (num)) - 1)
22 #endif