@@ -64,7 +64,6 @@ enum irqchip_irq_state;
6464 * IRQ_NOAUTOEN - Interrupt is not automatically enabled in
6565 * request/setup_irq()
6666 * IRQ_NO_BALANCING - Interrupt cannot be balanced (affinity set)
67- * IRQ_MOVE_PCNTXT - Interrupt can be migrated from process context
6867 * IRQ_NESTED_THREAD - Interrupt nests into another thread
6968 * IRQ_PER_CPU_DEVID - Dev_id is a per-cpu variable
7069 * IRQ_IS_POLLED - Always polled by another interrupt. Exclude
9392 IRQ_NOREQUEST = (1 << 11 ),
9493 IRQ_NOAUTOEN = (1 << 12 ),
9594 IRQ_NO_BALANCING = (1 << 13 ),
96- IRQ_MOVE_PCNTXT = (1 << 14 ),
9795 IRQ_NESTED_THREAD = (1 << 15 ),
9896 IRQ_NOTHREAD = (1 << 16 ),
9997 IRQ_PER_CPU_DEVID = (1 << 17 ),
@@ -105,7 +103,7 @@ enum {
105103
106104#define IRQF_MODIFY_MASK \
107105 (IRQ_TYPE_SENSE_MASK | IRQ_NOPROBE | IRQ_NOREQUEST | \
108- IRQ_NOAUTOEN | IRQ_MOVE_PCNTXT | IRQ_LEVEL | IRQ_NO_BALANCING | \
106+ IRQ_NOAUTOEN | IRQ_LEVEL | IRQ_NO_BALANCING | \
109107 IRQ_PER_CPU | IRQ_NESTED_THREAD | IRQ_NOTHREAD | IRQ_PER_CPU_DEVID | \
110108 IRQ_IS_POLLED | IRQ_DISABLE_UNLAZY | IRQ_HIDDEN)
111109
@@ -201,8 +199,6 @@ struct irq_data {
201199 * IRQD_LEVEL - Interrupt is level triggered
202200 * IRQD_WAKEUP_STATE - Interrupt is configured for wakeup
203201 * from suspend
204- * IRQD_MOVE_PCNTXT - Interrupt can be moved in process
205- * context
206202 * IRQD_IRQ_DISABLED - Disabled state of the interrupt
207203 * IRQD_IRQ_MASKED - Masked state of the interrupt
208204 * IRQD_IRQ_INPROGRESS - In progress state of the interrupt
@@ -233,7 +229,6 @@ enum {
233229 IRQD_AFFINITY_SET = BIT (12 ),
234230 IRQD_LEVEL = BIT (13 ),
235231 IRQD_WAKEUP_STATE = BIT (14 ),
236- IRQD_MOVE_PCNTXT = BIT (15 ),
237232 IRQD_IRQ_DISABLED = BIT (16 ),
238233 IRQD_IRQ_MASKED = BIT (17 ),
239234 IRQD_IRQ_INPROGRESS = BIT (18 ),
@@ -338,11 +333,6 @@ static inline bool irqd_is_wakeup_set(struct irq_data *d)
338333 return __irqd_to_state (d ) & IRQD_WAKEUP_STATE ;
339334}
340335
341- static inline bool irqd_can_move_in_process_context (struct irq_data * d )
342- {
343- return __irqd_to_state (d ) & IRQD_MOVE_PCNTXT ;
344- }
345-
346336static inline bool irqd_irq_disabled (struct irq_data * d )
347337{
348338 return __irqd_to_state (d ) & IRQD_IRQ_DISABLED ;
0 commit comments