aboutsummaryrefslogtreecommitdiff
path: root/drivers/staging/iio/dac/ad5446.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/staging/iio/dac/ad5446.h')
-rw-r--r--drivers/staging/iio/dac/ad5446.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/drivers/staging/iio/dac/ad5446.h b/drivers/staging/iio/dac/ad5446.h
index ca795a9d186..902542e22c4 100644
--- a/drivers/staging/iio/dac/ad5446.h
+++ b/drivers/staging/iio/dac/ad5446.h
@@ -56,20 +56,18 @@ struct ad5446_state {
};
/**
- * struct ad5446_chip_info - chip specifc information
+ * struct ad5446_chip_info - chip specific information
* @bits: accuracy of the DAC in bits
* @storagebits: number of bits written to the DAC
* @left_shift: number of bits the datum must be shifted
- * @sign: data representation [s]igned or [u]nsigned
* @int_vref_mv: AD5620/40/60: the internal reference voltage
- * @store_sample: chip specifc helper function to store the datum
+ * @store_sample: chip specific helper function to store the datum
*/
struct ad5446_chip_info {
u8 bits;
u8 storagebits;
u8 left_shift;
- char sign;
u16 int_vref_mv;
void (*store_sample) (struct ad5446_state *st, unsigned val);
};