Commit 4abf6f8b authored by Justin P. Mattock's avatar Justin P. Mattock Committed by Greg Kroah-Hartman

drivers:staging:iio Fix typos and comments in staging iio.

The below patch fixes some comments and some typos that I have found
while reading drivers/staging/iio/*
Signed-off-by: default avatarJustin P. Mattock <justinmattock@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 92a62532
...@@ -62,7 +62,7 @@ Then fill in the following: ...@@ -62,7 +62,7 @@ Then fill in the following:
An optional associated buffer. An optional associated buffer.
- indio_dev->pollfunc: - indio_dev->pollfunc:
Poll function related elements. This controls what occurs when a trigger Poll function related elements. This controls what occurs when a trigger
to which this device is attached sends and event. to which this device is attached sends an event.
- indio_dev->channels: - indio_dev->channels:
Specification of device channels. Most attributes etc are built Specification of device channels. Most attributes etc are built
form this spec. form this spec.
......
...@@ -86,7 +86,7 @@ config IIO_SIMPLE_DUMMY ...@@ -86,7 +86,7 @@ config IIO_SIMPLE_DUMMY
help help
Driver intended mainly as documentation for how to write Driver intended mainly as documentation for how to write
a driver. May also be useful for testing userspace code a driver. May also be useful for testing userspace code
without hardward. without hardware.
if IIO_SIMPLE_DUMMY if IIO_SIMPLE_DUMMY
......
...@@ -239,7 +239,7 @@ static int lis3l02dq_data_rdy_trigger_set_state(struct iio_trigger *trig, ...@@ -239,7 +239,7 @@ static int lis3l02dq_data_rdy_trigger_set_state(struct iio_trigger *trig,
__lis3l02dq_write_data_ready_config(&indio_dev->dev, state); __lis3l02dq_write_data_ready_config(&indio_dev->dev, state);
if (state == false) { if (state == false) {
/* /*
* A possible quirk with teh handler is currently worked around * A possible quirk with the handler is currently worked around
* by ensuring outstanding read events are cleared. * by ensuring outstanding read events are cleared.
*/ */
ret = lis3l02dq_read_all(indio_dev, NULL); ret = lis3l02dq_read_all(indio_dev, NULL);
......
...@@ -136,7 +136,7 @@ ...@@ -136,7 +136,7 @@
#define SCA3000_INT_MASK_ACTIVE_HIGH 0x01 #define SCA3000_INT_MASK_ACTIVE_HIGH 0x01
#define SCA3000_INT_MASK_ACTIVE_LOW 0x00 #define SCA3000_INT_MASK_ACTIVE_LOW 0x00
/* Values of mulipexed registers (write to ctrl_data after select) */ /* Values of multiplexed registers (write to ctrl_data after select) */
#define SCA3000_REG_ADDR_CTRL_DATA 0x22 #define SCA3000_REG_ADDR_CTRL_DATA 0x22
/* Measurement modes available on some sca3000 series chips. Code assumes others /* Measurement modes available on some sca3000 series chips. Code assumes others
......
...@@ -23,7 +23,7 @@ ...@@ -23,7 +23,7 @@
/** /**
* ad7476_ring_preenable() setup the parameters of the ring before enabling * ad7476_ring_preenable() setup the parameters of the ring before enabling
* *
* The complex nature of the setting of the nuber of bytes per datum is due * The complex nature of the setting of the number of bytes per datum is due
* to this driver currently ensuring that the timestamp is stored at an 8 * to this driver currently ensuring that the timestamp is stored at an 8
* byte boundary. * byte boundary.
**/ **/
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
/** /**
* ad799x_ring_preenable() setup the parameters of the ring before enabling * ad799x_ring_preenable() setup the parameters of the ring before enabling
* *
* The complex nature of the setting of the nuber of bytes per datum is due * The complex nature of the setting of the number of bytes per datum is due
* to this driver currently ensuring that the timestamp is stored at an 8 * to this driver currently ensuring that the timestamp is stored at an 8
* byte boundary. * byte boundary.
**/ **/
......
...@@ -341,7 +341,7 @@ static struct iio_chan_spec max1361_channels[] = ...@@ -341,7 +341,7 @@ static struct iio_chan_spec max1361_channels[] =
static struct iio_chan_spec max1363_channels[] = static struct iio_chan_spec max1363_channels[] =
MAX1363_4X_CHANS(12, MAX1363_EV_M); MAX1363_4X_CHANS(12, MAX1363_EV_M);
/* Appies to max1236, max1237 */ /* Applies to max1236, max1237 */
static const enum max1363_modes max1236_mode_list[] = { static const enum max1363_modes max1236_mode_list[] = {
_s0, _s1, _s2, _s3, _s0, _s1, _s2, _s3,
s0to1, s0to2, s0to3, s0to1, s0to2, s0to3,
......
...@@ -334,7 +334,7 @@ static int __devinit ad5446_probe(struct spi_device *spi) ...@@ -334,7 +334,7 @@ static int __devinit ad5446_probe(struct spi_device *spi)
st->reg = reg; st->reg = reg;
st->spi = spi; st->spi = spi;
/* Estabilish that the iio_dev is a child of the spi device */ /* Establish that the iio_dev is a child of the spi device */
indio_dev->dev.parent = &spi->dev; indio_dev->dev.parent = &spi->dev;
indio_dev->name = spi_get_device_id(spi)->name; indio_dev->name = spi_get_device_id(spi)->name;
if (st->chip_info->store_pwr_down) if (st->chip_info->store_pwr_down)
......
...@@ -26,7 +26,7 @@ enum iio_data_type { ...@@ -26,7 +26,7 @@ enum iio_data_type {
/* Could add the raw attributes as well - allowing buffer only devices */ /* Could add the raw attributes as well - allowing buffer only devices */
enum iio_chan_info_enum { enum iio_chan_info_enum {
/* 0 is reserverd for raw attributes */ /* 0 is reserved for raw attributes */
IIO_CHAN_INFO_SCALE = 1, IIO_CHAN_INFO_SCALE = 1,
IIO_CHAN_INFO_OFFSET, IIO_CHAN_INFO_OFFSET,
IIO_CHAN_INFO_CALIBSCALE, IIO_CHAN_INFO_CALIBSCALE,
...@@ -110,7 +110,7 @@ struct iio_chan_spec_ext_info { ...@@ -110,7 +110,7 @@ struct iio_chan_spec_ext_info {
/** /**
* struct iio_chan_spec - specification of a single channel * struct iio_chan_spec - specification of a single channel
* @type: What type of measurement is the channel making. * @type: What type of measurement is the channel making.
* @channel: What number or name do we wish to asign the channel. * @channel: What number or name do we wish to assign the channel.
* @channel2: If there is a second number for a differential * @channel2: If there is a second number for a differential
* channel then this is it. If modified is set then the * channel then this is it. If modified is set then the
* value here specifies the modifier. * value here specifies the modifier.
...@@ -133,7 +133,7 @@ struct iio_chan_spec_ext_info { ...@@ -133,7 +133,7 @@ struct iio_chan_spec_ext_info {
* informative name. Note this has no effect codes etc, * informative name. Note this has no effect codes etc,
* unlike modifiers. * unlike modifiers.
* @datasheet_name: A name used in in kernel mapping of channels. It should * @datasheet_name: A name used in in kernel mapping of channels. It should
* corrspond to the first name that the channel is referred * correspond to the first name that the channel is referred
* to by in the datasheet (e.g. IND), or the nearest * to by in the datasheet (e.g. IND), or the nearest
* possible compound name (e.g. IND-INC). * possible compound name (e.g. IND-INC).
* @processed_val: Flag to specify the data access attribute should be * @processed_val: Flag to specify the data access attribute should be
...@@ -243,7 +243,7 @@ struct iio_dev; ...@@ -243,7 +243,7 @@ struct iio_dev;
* @write_event_config: set if the event is enabled. * @write_event_config: set if the event is enabled.
* @read_event_value: read a value associated with the event. Meaning * @read_event_value: read a value associated with the event. Meaning
* is event dependant. event_code specifies which event. * is event dependant. event_code specifies which event.
* @write_event_value: write the value associate with the event. * @write_event_value: write the value associated with the event.
* Meaning is event dependent. * Meaning is event dependent.
* @validate_trigger: function to validate the trigger when the * @validate_trigger: function to validate the trigger when the
* current trigger gets changed. * current trigger gets changed.
......
...@@ -32,7 +32,7 @@ ...@@ -32,7 +32,7 @@
* @chip: irq chip we are faking * @chip: irq chip we are faking
* @base: base of irq range * @base: base of irq range
* @enabled: mask of which irqs are enabled * @enabled: mask of which irqs are enabled
* @inuse: mask of which irqs actually have anyone connected * @inuse: mask of which irqs are connected
* @lock: protect the evgen state * @lock: protect the evgen state
*/ */
struct iio_dummy_eventgen { struct iio_dummy_eventgen {
......
...@@ -113,7 +113,7 @@ struct taos_lux { ...@@ -113,7 +113,7 @@ struct taos_lux {
/* This structure is intentionally large to accommodate updates via sysfs. */ /* This structure is intentionally large to accommodate updates via sysfs. */
/* Sized to 11 = max 10 segments + 1 termination segment */ /* Sized to 11 = max 10 segments + 1 termination segment */
/* Assumption is is one and only one type of glass used */ /* Assumption is one and only one type of glass used */
static struct taos_lux taos_device_lux[11] = { static struct taos_lux taos_device_lux[11] = {
{ 9830, 8520, 15729 }, { 9830, 8520, 15729 },
{ 12452, 10807, 23344 }, { 12452, 10807, 23344 },
......
...@@ -86,7 +86,7 @@ ...@@ -86,7 +86,7 @@
#define RATE_NOT_USED 0x07 #define RATE_NOT_USED 0x07
/* /*
* Device Configutration * Device Configuration
*/ */
#define CONF_NORMAL 0x00 #define CONF_NORMAL 0x00
#define CONF_POSITIVE_BIAS 0x01 #define CONF_POSITIVE_BIAS 0x01
...@@ -169,7 +169,7 @@ static int hmc5843_read_measurement(struct iio_dev *indio_dev, ...@@ -169,7 +169,7 @@ static int hmc5843_read_measurement(struct iio_dev *indio_dev,
/* /*
* From the datasheet * From the datasheet
* 0 - Continuous-Conversion Mode: In continuous-conversion mode, the * 0 - Continuous-Conversion Mode: In continuous-conversion mode, the
* device continuously performs conversions an places the result in the * device continuously performs conversions and places the result in the
* data register. * data register.
* *
* 1 - Single-Conversion Mode : device performs a single measurement, * 1 - Single-Conversion Mode : device performs a single measurement,
......
...@@ -85,7 +85,7 @@ static irqreturn_t ade7758_trigger_handler(int irq, void *p) ...@@ -85,7 +85,7 @@ static irqreturn_t ade7758_trigger_handler(int irq, void *p)
/** /**
* ade7758_ring_preenable() setup the parameters of the ring before enabling * ade7758_ring_preenable() setup the parameters of the ring before enabling
* *
* The complex nature of the setting of the nuber of bytes per datum is due * The complex nature of the setting of the number of bytes per datum is due
* to this driver currently ensuring that the timestamp is stored at an 8 * to this driver currently ensuring that the timestamp is stored at an 8
* byte boundary. * byte boundary.
**/ **/
......
...@@ -362,7 +362,7 @@ ...@@ -362,7 +362,7 @@
#define IIO_EVENT_ATTR_CYCEND(_evlist, _show, _store, _mask) \ #define IIO_EVENT_ATTR_CYCEND(_evlist, _show, _store, _mask) \
IIO_EVENT_ATTR_SH(cycend, _evlist, _show, _store, _mask) IIO_EVENT_ATTR_SH(cycend, _evlist, _show, _store, _mask)
/* on the rising and falling edge of the the voltage waveform */ /* on the rising and falling edge of the voltage waveform */
#define IIO_EVENT_ATTR_ZERO_CROSS(_evlist, _show, _store, _mask) \ #define IIO_EVENT_ATTR_ZERO_CROSS(_evlist, _show, _store, _mask) \
IIO_EVENT_ATTR_SH(zero_cross, _evlist, _show, _store, _mask) IIO_EVENT_ATTR_SH(zero_cross, _evlist, _show, _store, _mask)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment