diff options
author | Christoph Hellwig <hch@lst.de> | 2015-12-07 09:38:28 -0500 |
---|---|---|
committer | Christoph Hellwig <hch@lst.de> | 2015-12-11 14:52:25 -0500 |
commit | 78d0264eb7a938f1eaf59fcb2d3f7da2567369d3 (patch) | |
tree | a6e47a7af610dd802b202b1e03b89d69f61a6fc1 /lib | |
parent | 511cbce2ff8b9d322077909ee90c5d4b67b29b75 (diff) |
irq_poll: don't disable new irq_poll instances
There is no good reason to start out disabled - drivers can control if
the poll instance can be scheduled by simply not scheduling it yet.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Bart Van Assche <bart.vanassche@sandisk.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/irq_poll.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/irq_poll.c b/lib/irq_poll.c index e6fd1dc0908b..88af87971e8c 100644 --- a/lib/irq_poll.c +++ b/lib/irq_poll.c | |||
@@ -170,8 +170,7 @@ EXPORT_SYMBOL(irq_poll_enable); | |||
170 | * @poll_fn: The handler to invoke | 170 | * @poll_fn: The handler to invoke |
171 | * | 171 | * |
172 | * Description: | 172 | * Description: |
173 | * Initialize this irq_poll structure. Before being actively used, the | 173 | * Initialize and enable this irq_poll structure. |
174 | * driver must call irq_poll_enable(). | ||
175 | **/ | 174 | **/ |
176 | void irq_poll_init(struct irq_poll *iop, int weight, irq_poll_fn *poll_fn) | 175 | void irq_poll_init(struct irq_poll *iop, int weight, irq_poll_fn *poll_fn) |
177 | { | 176 | { |
@@ -179,7 +178,6 @@ void irq_poll_init(struct irq_poll *iop, int weight, irq_poll_fn *poll_fn) | |||
179 | INIT_LIST_HEAD(&iop->list); | 178 | INIT_LIST_HEAD(&iop->list); |
180 | iop->weight = weight; | 179 | iop->weight = weight; |
181 | iop->poll = poll_fn; | 180 | iop->poll = poll_fn; |
182 | set_bit(IRQ_POLL_F_SCHED, &iop->state); | ||
183 | } | 181 | } |
184 | EXPORT_SYMBOL(irq_poll_init); | 182 | EXPORT_SYMBOL(irq_poll_init); |
185 | 183 | ||