aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/iio
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2012-05-08 14:18:17 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-05-08 19:04:12 -0400
commit99de0c2b341fc2d0f41ca9eadaa752c651c06b83 (patch)
tree2b79746560455ef687afe5beff0ad50f6fe649ee /drivers/staging/iio
parentabd5a2fb3957b5a6eb8083044a61e1b95b770abf (diff)
staging: iio: Fix typo in iio
Correct spelling typo in staging/iio Signed-off-by: Masanari Iida <standby24x7@gmail.com> Acked-by: Michael Hennerich<michael.hennerich@analog.com> Acked-by: Jonathan Cameron <jic23@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging/iio')
-rw-r--r--drivers/staging/iio/TODO2
-rw-r--r--drivers/staging/iio/gyro/adxrs450.h2
-rw-r--r--drivers/staging/iio/iio_simple_dummy_buffer.c4
-rw-r--r--drivers/staging/iio/iio_simple_dummy_events.c2
4 files changed, 5 insertions, 5 deletions
diff --git a/drivers/staging/iio/TODO b/drivers/staging/iio/TODO
index d1ad35e24ab..cf3f9489b9d 100644
--- a/drivers/staging/iio/TODO
+++ b/drivers/staging/iio/TODO
@@ -67,7 +67,7 @@ e-mailing the normal IIO list (see below).
67 67
68Documentation 68Documentation
691) Lots of cleanup and expansion. 691) Lots of cleanup and expansion.
702) Some device require indvidual docs. 702) Some device require individual docs.
71 71
72Contact: Jonathan Cameron <jic23@cam.ac.uk>. 72Contact: Jonathan Cameron <jic23@cam.ac.uk>.
73Mailing list: linux-iio@vger.kernel.org 73Mailing list: linux-iio@vger.kernel.org
diff --git a/drivers/staging/iio/gyro/adxrs450.h b/drivers/staging/iio/gyro/adxrs450.h
index af0c870100b..f8cf21f0294 100644
--- a/drivers/staging/iio/gyro/adxrs450.h
+++ b/drivers/staging/iio/gyro/adxrs450.h
@@ -49,7 +49,7 @@ enum {
49 * @us: actual spi_device 49 * @us: actual spi_device
50 * @buf_lock: mutex to protect tx and rx 50 * @buf_lock: mutex to protect tx and rx
51 * @tx: transmit buffer 51 * @tx: transmit buffer
52 * @rx: recieve buffer 52 * @rx: receive buffer
53 **/ 53 **/
54struct adxrs450_state { 54struct adxrs450_state {
55 struct spi_device *us; 55 struct spi_device *us;
diff --git a/drivers/staging/iio/iio_simple_dummy_buffer.c b/drivers/staging/iio/iio_simple_dummy_buffer.c
index 372606572d1..fdfc8739095 100644
--- a/drivers/staging/iio/iio_simple_dummy_buffer.c
+++ b/drivers/staging/iio/iio_simple_dummy_buffer.c
@@ -37,7 +37,7 @@ static const s16 fakedata[] = {
37 * @irq: the interrupt number 37 * @irq: the interrupt number
38 * @p: private data - always a pointer to the poll func. 38 * @p: private data - always a pointer to the poll func.
39 * 39 *
40 * This is the guts of buffered capture. On a trigger event occuring, 40 * This is the guts of buffered capture. On a trigger event occurring,
41 * if the pollfunc is attached then this handler is called as a threaded 41 * if the pollfunc is attached then this handler is called as a threaded
42 * interrupt (and hence may sleep). It is responsible for grabbing data 42 * interrupt (and hence may sleep). It is responsible for grabbing data
43 * from the device and pushing it into the associated buffer. 43 * from the device and pushing it into the associated buffer.
@@ -61,7 +61,7 @@ static irqreturn_t iio_simple_dummy_trigger_h(int irq, void *p)
61 * up a fast read. The capture will consist of all of them. 61 * up a fast read. The capture will consist of all of them.
62 * Hence we just call the grab data function and fill the 62 * Hence we just call the grab data function and fill the
63 * buffer without processing. 63 * buffer without processing.
64 * sofware scans: can be considered to be random access 64 * software scans: can be considered to be random access
65 * so efficient reading is just a case of minimal bus 65 * so efficient reading is just a case of minimal bus
66 * transactions. 66 * transactions.
67 * software culled hardware scans: 67 * software culled hardware scans:
diff --git a/drivers/staging/iio/iio_simple_dummy_events.c b/drivers/staging/iio/iio_simple_dummy_events.c
index f85bd197ed3..317b77465db 100644
--- a/drivers/staging/iio/iio_simple_dummy_events.c
+++ b/drivers/staging/iio/iio_simple_dummy_events.c
@@ -122,7 +122,7 @@ int iio_simple_dummy_write_event_value(struct iio_dev *indio_dev,
122 * @private: pointer to device instance state. 122 * @private: pointer to device instance state.
123 * 123 *
124 * This handler is responsible for querying the device to find out what 124 * This handler is responsible for querying the device to find out what
125 * event occured and for then pushing that event towards userspace. 125 * event occurred and for then pushing that event towards userspace.
126 * Here only one event occurs so we push that directly on with locally 126 * Here only one event occurs so we push that directly on with locally
127 * grabbed timestamp. 127 * grabbed timestamp.
128 */ 128 */