Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Masanari Iida and committed by
Greg Kroah-Hartman
99de0c2b abd5a2fb

+5 -5
+1 -1
drivers/staging/iio/TODO
··· 67 67 68 68 Documentation 69 69 1) Lots of cleanup and expansion. 70 - 2) Some device require indvidual docs. 70 + 2) Some device require individual docs. 71 71 72 72 Contact: Jonathan Cameron <jic23@cam.ac.uk>. 73 73 Mailing list: linux-iio@vger.kernel.org
+1 -1
drivers/staging/iio/gyro/adxrs450.h
··· 49 49 * @us: actual spi_device 50 50 * @buf_lock: mutex to protect tx and rx 51 51 * @tx: transmit buffer 52 - * @rx: recieve buffer 52 + * @rx: receive buffer 53 53 **/ 54 54 struct adxrs450_state { 55 55 struct spi_device *us;
+2 -2
drivers/staging/iio/iio_simple_dummy_buffer.c
··· 37 37 * @irq: the interrupt number 38 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 41 * if the pollfunc is attached then this handler is called as a threaded 42 42 * interrupt (and hence may sleep). It is responsible for grabbing data 43 43 * from the device and pushing it into the associated buffer. ··· 61 61 * up a fast read. The capture will consist of all of them. 62 62 * Hence we just call the grab data function and fill the 63 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 65 * so efficient reading is just a case of minimal bus 66 66 * transactions. 67 67 * software culled hardware scans:
+1 -1
drivers/staging/iio/iio_simple_dummy_events.c
··· 122 122 * @private: pointer to device instance state. 123 123 * 124 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 126 * Here only one event occurs so we push that directly on with locally 127 127 * grabbed timestamp. 128 128 */