File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -492,15 +492,10 @@ extern void irq_migrate_all_off_this_cpu(void);
492
492
void irq_move_irq (struct irq_data * data );
493
493
void irq_move_masked_irq (struct irq_data * data );
494
494
void irq_force_complete_move (struct irq_desc * desc );
495
- bool irq_fixup_move_pending (struct irq_desc * desc , bool force_clear );
496
495
#else
497
496
static inline void irq_move_irq (struct irq_data * data ) { }
498
497
static inline void irq_move_masked_irq (struct irq_data * data ) { }
499
498
static inline void irq_force_complete_move (struct irq_desc * desc ) { }
500
- static inline bool irq_fixup_move_pending (struct irq_desc * desc , bool fclear )
501
- {
502
- return false;
503
- }
504
499
#endif
505
500
506
501
extern int no_irq_affinity ;
Original file line number Diff line number Diff line change @@ -272,6 +272,7 @@ static inline struct cpumask *irq_desc_get_pending_mask(struct irq_desc *desc)
272
272
{
273
273
return desc -> pending_mask ;
274
274
}
275
+ bool irq_fixup_move_pending (struct irq_desc * desc , bool force_clear );
275
276
#else /* CONFIG_GENERIC_PENDING_IRQ */
276
277
static inline bool irq_can_move_pcntxt (struct irq_data * data )
277
278
{
@@ -293,6 +294,10 @@ static inline struct cpumask *irq_desc_get_pending_mask(struct irq_desc *desc)
293
294
{
294
295
return NULL ;
295
296
}
297
+ static inline bool irq_fixup_move_pending (struct irq_desc * desc , bool fclear )
298
+ {
299
+ return false;
300
+ }
296
301
#endif /* !CONFIG_GENERIC_PENDING_IRQ */
297
302
298
303
#ifdef CONFIG_GENERIC_IRQ_DEBUGFS
You can’t perform that action at this time.
0 commit comments