diff options
author | Lars-Peter Clausen <lars@metafoo.de> | 2012-04-25 07:44:55 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-25 17:57:20 (GMT) |
commit | 39c58b607948c731cc1b4c64a1f22f90f72684e2 (patch) | |
tree | 9a01216f3939570a44bbe18e33acb370b54b4e99 | |
parent | af836d9a38aec16a99c9c9bee114111db8b9e8df (diff) | |
download | linux-39c58b607948c731cc1b4c64a1f22f90f72684e2.tar.xz |
staging:iio:dac:ad5446: Remove unused struct field
Remove the unused "poll_work" field from the ad5446_state struct.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Acked-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r-- | drivers/staging/iio/dac/ad5446.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/staging/iio/dac/ad5446.h b/drivers/staging/iio/dac/ad5446.h index f9fff71..29aa0dc 100644 --- a/drivers/staging/iio/dac/ad5446.h +++ b/drivers/staging/iio/dac/ad5446.h @@ -34,7 +34,6 @@ * @spi: spi_device * @chip_info: chip model specific constants, available modes etc * @reg: supply regulator - * @poll_work: bottom half of polling interrupt handler * @vref_mv: actual reference voltage used */ @@ -42,7 +41,6 @@ struct ad5446_state { struct spi_device *spi; const struct ad5446_chip_info *chip_info; struct regulator *reg; - struct work_struct poll_work; unsigned short vref_mv; unsigned cached_val; unsigned pwr_down_mode; |