File tree Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Expand file tree Collapse file tree 2 files changed +1
-3
lines changed Original file line number Diff line number Diff line change 21
21
extern void irq_poll_sched (struct irq_poll * );
22
22
extern void irq_poll_init (struct irq_poll * , int , irq_poll_fn * );
23
23
extern void irq_poll_complete (struct irq_poll * );
24
- extern void __irq_poll_complete (struct irq_poll * );
25
24
extern void irq_poll_enable (struct irq_poll * );
26
25
extern void irq_poll_disable (struct irq_poll * );
27
26
Original file line number Diff line number Diff line change @@ -47,13 +47,12 @@ EXPORT_SYMBOL(irq_poll_sched);
47
47
* See irq_poll_complete(). This function must be called with interrupts
48
48
* disabled.
49
49
**/
50
- void __irq_poll_complete (struct irq_poll * iop )
50
+ static void __irq_poll_complete (struct irq_poll * iop )
51
51
{
52
52
list_del (& iop -> list );
53
53
smp_mb__before_atomic ();
54
54
clear_bit_unlock (IRQ_POLL_F_SCHED , & iop -> state );
55
55
}
56
- EXPORT_SYMBOL (__irq_poll_complete );
57
56
58
57
/**
59
58
* irq_poll_complete - Mark this @iop as un-polled again
You can’t perform that action at this time.
0 commit comments