Skip to content

Commit

Permalink
iio: remove useless irq_enabled variable in at91
Browse files Browse the repository at this point in the history
irq_enabled is only set, but never read

Signed-off-by: Peter Meerwald <pmeerw@pmeerw.net>
Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
  • Loading branch information
Peter Meerwald authored and Jonathan Cameron committed Oct 19, 2012
1 parent 73327b4 commit e1562ef
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions drivers/iio/adc/at91_adc.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ struct at91_adc_state {
struct clk *clk;
bool done;
int irq;
bool irq_enabled;
u16 last_value;
struct mutex lock;
u8 num_channels;
Expand Down Expand Up @@ -85,7 +84,6 @@ static irqreturn_t at91_adc_trigger_handler(int irq, void *p)
buffer->access->store_to(buffer, (u8 *)st->buffer);

iio_trigger_notify_done(idev->trig);
st->irq_enabled = true;

/* Needed to ACK the DRDY interruption */
at91_adc_readl(st, AT91_ADC_LCDR);
Expand All @@ -106,7 +104,6 @@ static irqreturn_t at91_adc_eoc_trigger(int irq, void *private)

if (iio_buffer_enabled(idev)) {
disable_irq_nosync(irq);
st->irq_enabled = false;
iio_trigger_poll(idev->trig, iio_get_time_ns());
} else {
st->last_value = at91_adc_readl(st, AT91_ADC_LCDR);
Expand Down

0 comments on commit e1562ef

Please sign in to comment.