* [PATCH] staging, iio: Fix typo in iio
@ 2012-05-07 16:18 Masanari Iida
2012-05-07 19:35 ` Hennerich, Michael
0 siblings, 1 reply; 6+ messages in thread
From: Masanari Iida @ 2012-05-07 16:18 UTC (permalink / raw)
To: devel, linux-iio; +Cc: linux-kernel, Masanari Iida
Correct spelling typo in staging/iio
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
drivers/staging/iio/TODO | 2 +-
drivers/staging/iio/gyro/adxrs450.h | 2 +-
drivers/staging/iio/iio_simple_dummy_buffer.c | 4 ++--
drivers/staging/iio/iio_simple_dummy_events.c | 2 +-
4 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/drivers/staging/iio/TODO b/drivers/staging/iio/TODO
index d1ad35e..cf3f948 100644
--- a/drivers/staging/iio/TODO
+++ b/drivers/staging/iio/TODO
@@ -67,7 +67,7 @@ e-mailing the normal IIO list (see below).
Documentation
1) Lots of cleanup and expansion.
-2) Some device require indvidual docs.
+2) Some device require individual docs.
Contact: Jonathan Cameron <jic23@cam.ac.uk>.
Mailing list: linux-iio@vger.kernel.org
diff --git a/drivers/staging/iio/gyro/adxrs450.h b/drivers/staging/iio/gyro/adxrs450.h
index af0c870..f8cf21f 100644
--- a/drivers/staging/iio/gyro/adxrs450.h
+++ b/drivers/staging/iio/gyro/adxrs450.h
@@ -49,7 +49,7 @@ enum {
* @us: actual spi_device
* @buf_lock: mutex to protect tx and rx
* @tx: transmit buffer
- * @rx: recieve buffer
+ * @rx: receive buffer
**/
struct adxrs450_state {
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 bb4daf7..389c18a 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[] = {
* @irq: the interrupt number
* @p: private data - always a pointer to the poll func.
*
- * This is the guts of buffered capture. On a trigger event occuring,
+ * This is the guts of buffered capture. On a trigger event occurring,
* if the pollfunc is attached then this handler is called as a threaded
* interrupt (and hence may sleep). It is responsible for grabbing data
* from the device and pushing it into the associated buffer.
@@ -64,7 +64,7 @@ static irqreturn_t iio_simple_dummy_trigger_h(int irq, void *p)
* up a fast read. The capture will consist of all of them.
* Hence we just call the grab data function and fill the
* buffer without processing.
- * sofware scans: can be considered to be random access
+ * software scans: can be considered to be random access
* so efficient reading is just a case of minimal bus
* transactions.
* 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 449c7a5..368317b 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,
* @private: pointer to device instance state.
*
* This handler is responsible for querying the device to find out what
- * event occured and for then pushing that event towards userspace.
+ * event occurred and for then pushing that event towards userspace.
* Here only one event occurs so we push that directly on with locally
* grabbed timestamp.
*/
--
1.7.10.1.457.g8275905
^ permalink raw reply related [flat|nested] 6+ messages in thread* RE: [PATCH] staging, iio: Fix typo in iio
2012-05-07 16:18 [PATCH] staging, iio: Fix typo in iio Masanari Iida
@ 2012-05-07 19:35 ` Hennerich, Michael
2012-05-08 12:41 ` Jonathan Cameron
0 siblings, 1 reply; 6+ messages in thread
From: Hennerich, Michael @ 2012-05-07 19:35 UTC (permalink / raw)
To: Masanari Iida, devel@driverdev.osuosl.org,
linux-iio@vger.kernel.org
Cc: linux-kernel@vger.kernel.org,
device-drivers-devel@blackfin.uclinux.org
Masanari Iida wrote on 2012-05-07:
> Correct spelling typo in staging/iio
>
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Michael Hennerich <michael.hennerich@analog.com>
> ---
> drivers/staging/iio/TODO | 2 +-
> drivers/staging/iio/gyro/adxrs450.h | 2 +-
> drivers/staging/iio/iio_simple_dummy_buffer.c | 4 ++--
> drivers/staging/iio/iio_simple_dummy_events.c | 2 +-
> 4 files changed, 5 insertions(+), 5 deletions(-)
> diff --git a/drivers/staging/iio/TODO b/drivers/staging/iio/TODO
> index d1ad35e..cf3f948 100644
> --- a/drivers/staging/iio/TODO
> +++ b/drivers/staging/iio/TODO
> @@ -67,7 +67,7 @@ e-mailing the normal IIO list (see below).
>
> Documentation
> 1) Lots of cleanup and expansion.
> -2) Some device require indvidual docs.
> +2) Some device require individual docs.
>
> Contact: Jonathan Cameron <jic23@cam.ac.uk>.
> Mailing list: linux-iio@vger.kernel.org
> diff --git a/drivers/staging/iio/gyro/adxrs450.h
> b/drivers/staging/iio/gyro/adxrs450.h index af0c870..f8cf21f 100644 ---
> a/drivers/staging/iio/gyro/adxrs450.h +++
> b/drivers/staging/iio/gyro/adxrs450.h @@ -49,7 +49,7 @@ enum {
> * @us: actual spi_device
> * @buf_lock: mutex to protect tx and rx
> * @tx: transmit buffer
> - * @rx: recieve buffer
> + * @rx: receive buffer
> **/
> struct adxrs450_state {
> 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 bb4daf7..389c18a
> 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[] = {
> * @irq: the interrupt number
> * @p: private data - always a pointer to the poll func.
> *
> - * This is the guts of buffered capture. On a trigger event occuring,
> + * This is the guts of buffered capture. On a trigger event occurring,
> * if the pollfunc is attached then this handler is called as a
> threaded * interrupt (and hence may sleep). It is responsible for
> grabbing data * from the device and pushing it into the associated
> buffer.
> @@ -64,7 +64,7 @@ static irqreturn_t iio_simple_dummy_trigger_h(int
> irq, void *p)
> * up a fast read. The capture will consist of all of them. *
> Hence we just call the grab data function and fill the * buffer
> without processing.
> - * sofware scans: can be considered to be random access
> + * software scans: can be considered to be random access
> * so efficient reading is just a case of minimal bus
> * transactions.
> * 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 449c7a5..368317b
> 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,
> * @private: pointer to device instance state.
> *
> * This handler is responsible for querying the device to find out
> what
> - * event occured and for then pushing that event towards userspace.
> + * event occurred and for then pushing that event towards userspace.
> * Here only one event occurs so we push that directly on with locally
> * grabbed timestamp.
> */
Greetings,
Michael
--
Analog Devices GmbH Wilhelm-Wagenfeld-Str. 6 80807 Muenchen
Sitz der Gesellschaft: Muenchen; Registergericht: Muenchen HRB 40368;
Geschaeftsfuehrer:Dr.Carsten Suckrow, Thomas Wessel, William A. Martin, Margaret Seif
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] staging, iio: Fix typo in iio
2012-05-07 19:35 ` Hennerich, Michael
@ 2012-05-08 12:41 ` Jonathan Cameron
0 siblings, 0 replies; 6+ messages in thread
From: Jonathan Cameron @ 2012-05-08 12:41 UTC (permalink / raw)
To: Hennerich, Michael
Cc: Masanari Iida, devel@driverdev.osuosl.org,
linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
device-drivers-devel@blackfin.uclinux.org
On 5/7/2012 8:35 PM, Hennerich, Michael wrote:
> Masanari Iida wrote on 2012-05-07:
>> 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>
Please send to Gregkh@linuxfoundation.org
>> ---
>> drivers/staging/iio/TODO | 2 +-
>> drivers/staging/iio/gyro/adxrs450.h | 2 +-
>> drivers/staging/iio/iio_simple_dummy_buffer.c | 4 ++--
>> drivers/staging/iio/iio_simple_dummy_events.c | 2 +-
>> 4 files changed, 5 insertions(+), 5 deletions(-)
>> diff --git a/drivers/staging/iio/TODO b/drivers/staging/iio/TODO
>> index d1ad35e..cf3f948 100644
>> --- a/drivers/staging/iio/TODO
>> +++ b/drivers/staging/iio/TODO
>> @@ -67,7 +67,7 @@ e-mailing the normal IIO list (see below).
>>
>> Documentation
>> 1) Lots of cleanup and expansion.
>> -2) Some device require indvidual docs.
>> +2) Some device require individual docs.
>>
>> Contact: Jonathan Cameron<jic23@cam.ac.uk>.
>> Mailing list: linux-iio@vger.kernel.org
>> diff --git a/drivers/staging/iio/gyro/adxrs450.h
>> b/drivers/staging/iio/gyro/adxrs450.h index af0c870..f8cf21f 100644 ---
>> a/drivers/staging/iio/gyro/adxrs450.h +++
>> b/drivers/staging/iio/gyro/adxrs450.h @@ -49,7 +49,7 @@ enum {
>> * @us: actual spi_device
>> * @buf_lock: mutex to protect tx and rx
>> * @tx: transmit buffer
>> - * @rx: recieve buffer
>> + * @rx: receive buffer
>> **/
>> struct adxrs450_state {
>> 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 bb4daf7..389c18a
>> 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[] = {
>> * @irq: the interrupt number
>> * @p: private data - always a pointer to the poll func.
>> *
>> - * This is the guts of buffered capture. On a trigger event occuring,
>> + * This is the guts of buffered capture. On a trigger event occurring,
>> * if the pollfunc is attached then this handler is called as a
>> threaded * interrupt (and hence may sleep). It is responsible for
>> grabbing data * from the device and pushing it into the associated
>> buffer.
>> @@ -64,7 +64,7 @@ static irqreturn_t iio_simple_dummy_trigger_h(int
>> irq, void *p)
>> * up a fast read. The capture will consist of all of them. *
>> Hence we just call the grab data function and fill the * buffer
>> without processing.
>> - * sofware scans: can be considered to be random access
>> + * software scans: can be considered to be random access
>> * so efficient reading is just a case of minimal bus
>> * transactions.
>> * 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 449c7a5..368317b
>> 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,
>> * @private: pointer to device instance state.
>> *
>> * This handler is responsible for querying the device to find out
>> what
>> - * event occured and for then pushing that event towards userspace.
>> + * event occurred and for then pushing that event towards userspace.
>> * Here only one event occurs so we push that directly on with locally
>> * grabbed timestamp.
>> */
> Greetings,
> Michael
>
> --
> Analog Devices GmbH Wilhelm-Wagenfeld-Str. 6 80807 Muenchen
> Sitz der Gesellschaft: Muenchen; Registergericht: Muenchen HRB 40368;
> Geschaeftsfuehrer:Dr.Carsten Suckrow, Thomas Wessel, William A. Martin, Margaret Seif
>
>
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-iio" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] staging: iio: Fix typo in iio
@ 2014-04-22 11:23 Masanari Iida
2014-04-22 21:41 ` Randy Dunlap
0 siblings, 1 reply; 6+ messages in thread
From: Masanari Iida @ 2014-04-22 11:23 UTC (permalink / raw)
To: jic23, linux-iio, devel; +Cc: gregkh, rdunlap, Masanari Iida
Correct spelling typo in comment within staging/iio
Signed-off-by: Masanari Iida <standby24x7@gmail.com>
---
drivers/staging/iio/adc/ad7606.h | 4 ++--
drivers/staging/iio/adc/ad7816.c | 2 +-
drivers/staging/iio/adc/ad799x.h | 2 +-
drivers/staging/iio/addac/adt7316.c | 4 ++--
drivers/staging/iio/cdc/ad7152.c | 2 +-
drivers/staging/iio/cdc/ad7746.c | 2 +-
6 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/staging/iio/adc/ad7606.h b/drivers/staging/iio/adc/ad7606.h
index 93c7299..ec89d05 100644
--- a/drivers/staging/iio/adc/ad7606.h
+++ b/drivers/staging/iio/adc/ad7606.h
@@ -14,7 +14,7 @@
*/
/**
- * struct ad7606_platform_data - platform/board specifc information
+ * struct ad7606_platform_data - platform/board specific information
* @default_os: default oversampling value {0, 2, 4, 8, 16, 32, 64}
* @default_range: default range +/-{5000, 10000} mVolt
* @gpio_convst: number of gpio connected to the CONVST pin
@@ -41,7 +41,7 @@ struct ad7606_platform_data {
};
/**
- * struct ad7606_chip_info - chip specifc information
+ * struct ad7606_chip_info - chip specific information
* @name: identification string for chip
* @int_vref_mv: the internal reference voltage
* @channels: channel specification
diff --git a/drivers/staging/iio/adc/ad7816.c b/drivers/staging/iio/adc/ad7816.c
index 2369cf2..158d770 100644
--- a/drivers/staging/iio/adc/ad7816.c
+++ b/drivers/staging/iio/adc/ad7816.c
@@ -40,7 +40,7 @@
/*
- * struct ad7816_chip_info - chip specifc information
+ * struct ad7816_chip_info - chip specific information
*/
struct ad7816_chip_info {
diff --git a/drivers/staging/iio/adc/ad799x.h b/drivers/staging/iio/adc/ad799x.h
index fc8c852..70ddfa2 100644
--- a/drivers/staging/iio/adc/ad799x.h
+++ b/drivers/staging/iio/adc/ad799x.h
@@ -76,7 +76,7 @@ enum {
struct ad799x_state;
/**
- * struct ad799x_chip_info - chip specifc information
+ * struct ad799x_chip_info - chip specific information
* @channel: channel specification
* @num_channels: number of channels
* @monitor_mode: whether the chip supports monitor interrupts
diff --git a/drivers/staging/iio/addac/adt7316.c b/drivers/staging/iio/addac/adt7316.c
index 9f0ebb3..5f1770e 100644
--- a/drivers/staging/iio/addac/adt7316.c
+++ b/drivers/staging/iio/addac/adt7316.c
@@ -172,7 +172,7 @@
#define ID_ADT75XX 0x10
/*
- * struct adt7316_chip_info - chip specifc information
+ * struct adt7316_chip_info - chip specific information
*/
struct adt7316_chip_info {
@@ -208,7 +208,7 @@ struct adt7316_chip_info {
(ADT7316_TEMP_INT_MASK)
/*
- * struct adt7316_chip_info - chip specifc information
+ * struct adt7316_chip_info - chip specific information
*/
struct adt7316_limit_regs {
diff --git a/drivers/staging/iio/cdc/ad7152.c b/drivers/staging/iio/cdc/ad7152.c
index f2c309d..87110d9 100644
--- a/drivers/staging/iio/cdc/ad7152.c
+++ b/drivers/staging/iio/cdc/ad7152.c
@@ -78,7 +78,7 @@ enum {
};
/*
- * struct ad7152_chip_info - chip specifc information
+ * struct ad7152_chip_info - chip specific information
*/
struct ad7152_chip_info {
diff --git a/drivers/staging/iio/cdc/ad7746.c b/drivers/staging/iio/cdc/ad7746.c
index cbb1588..e6e9eaa 100644
--- a/drivers/staging/iio/cdc/ad7746.c
+++ b/drivers/staging/iio/cdc/ad7746.c
@@ -91,7 +91,7 @@
#define AD7746_CAPDAC_DACP(x) ((x) & 0x7F)
/*
- * struct ad7746_chip_info - chip specifc information
+ * struct ad7746_chip_info - chip specific information
*/
struct ad7746_chip_info {
--
2.0.0.rc0.26.g779792a
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [PATCH] staging: iio: Fix typo in iio
2014-04-22 11:23 [PATCH] staging: " Masanari Iida
@ 2014-04-22 21:41 ` Randy Dunlap
2014-04-23 20:45 ` Jonathan Cameron
0 siblings, 1 reply; 6+ messages in thread
From: Randy Dunlap @ 2014-04-22 21:41 UTC (permalink / raw)
To: Masanari Iida, jic23, linux-iio, devel; +Cc: gregkh
On 04/22/14 04:23, Masanari Iida wrote:
> Correct spelling typo in comment within staging/iio
>
> Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Acked-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.
> ---
> drivers/staging/iio/adc/ad7606.h | 4 ++--
> drivers/staging/iio/adc/ad7816.c | 2 +-
> drivers/staging/iio/adc/ad799x.h | 2 +-
> drivers/staging/iio/addac/adt7316.c | 4 ++--
> drivers/staging/iio/cdc/ad7152.c | 2 +-
> drivers/staging/iio/cdc/ad7746.c | 2 +-
> 6 files changed, 8 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/staging/iio/adc/ad7606.h b/drivers/staging/iio/adc/ad7606.h
> index 93c7299..ec89d05 100644
> --- a/drivers/staging/iio/adc/ad7606.h
> +++ b/drivers/staging/iio/adc/ad7606.h
> @@ -14,7 +14,7 @@
> */
>
> /**
> - * struct ad7606_platform_data - platform/board specifc information
> + * struct ad7606_platform_data - platform/board specific information
> * @default_os: default oversampling value {0, 2, 4, 8, 16, 32, 64}
> * @default_range: default range +/-{5000, 10000} mVolt
> * @gpio_convst: number of gpio connected to the CONVST pin
> @@ -41,7 +41,7 @@ struct ad7606_platform_data {
> };
>
> /**
> - * struct ad7606_chip_info - chip specifc information
> + * struct ad7606_chip_info - chip specific information
> * @name: identification string for chip
> * @int_vref_mv: the internal reference voltage
> * @channels: channel specification
> diff --git a/drivers/staging/iio/adc/ad7816.c b/drivers/staging/iio/adc/ad7816.c
> index 2369cf2..158d770 100644
> --- a/drivers/staging/iio/adc/ad7816.c
> +++ b/drivers/staging/iio/adc/ad7816.c
> @@ -40,7 +40,7 @@
>
>
> /*
> - * struct ad7816_chip_info - chip specifc information
> + * struct ad7816_chip_info - chip specific information
> */
>
> struct ad7816_chip_info {
> diff --git a/drivers/staging/iio/adc/ad799x.h b/drivers/staging/iio/adc/ad799x.h
> index fc8c852..70ddfa2 100644
> --- a/drivers/staging/iio/adc/ad799x.h
> +++ b/drivers/staging/iio/adc/ad799x.h
> @@ -76,7 +76,7 @@ enum {
> struct ad799x_state;
>
> /**
> - * struct ad799x_chip_info - chip specifc information
> + * struct ad799x_chip_info - chip specific information
> * @channel: channel specification
> * @num_channels: number of channels
> * @monitor_mode: whether the chip supports monitor interrupts
> diff --git a/drivers/staging/iio/addac/adt7316.c b/drivers/staging/iio/addac/adt7316.c
> index 9f0ebb3..5f1770e 100644
> --- a/drivers/staging/iio/addac/adt7316.c
> +++ b/drivers/staging/iio/addac/adt7316.c
> @@ -172,7 +172,7 @@
> #define ID_ADT75XX 0x10
>
> /*
> - * struct adt7316_chip_info - chip specifc information
> + * struct adt7316_chip_info - chip specific information
> */
>
> struct adt7316_chip_info {
> @@ -208,7 +208,7 @@ struct adt7316_chip_info {
> (ADT7316_TEMP_INT_MASK)
>
> /*
> - * struct adt7316_chip_info - chip specifc information
> + * struct adt7316_chip_info - chip specific information
> */
>
> struct adt7316_limit_regs {
> diff --git a/drivers/staging/iio/cdc/ad7152.c b/drivers/staging/iio/cdc/ad7152.c
> index f2c309d..87110d9 100644
> --- a/drivers/staging/iio/cdc/ad7152.c
> +++ b/drivers/staging/iio/cdc/ad7152.c
> @@ -78,7 +78,7 @@ enum {
> };
>
> /*
> - * struct ad7152_chip_info - chip specifc information
> + * struct ad7152_chip_info - chip specific information
> */
>
> struct ad7152_chip_info {
> diff --git a/drivers/staging/iio/cdc/ad7746.c b/drivers/staging/iio/cdc/ad7746.c
> index cbb1588..e6e9eaa 100644
> --- a/drivers/staging/iio/cdc/ad7746.c
> +++ b/drivers/staging/iio/cdc/ad7746.c
> @@ -91,7 +91,7 @@
> #define AD7746_CAPDAC_DACP(x) ((x) & 0x7F)
>
> /*
> - * struct ad7746_chip_info - chip specifc information
> + * struct ad7746_chip_info - chip specific information
> */
>
> struct ad7746_chip_info {
>
--
~Randy
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH] staging: iio: Fix typo in iio
2014-04-22 21:41 ` Randy Dunlap
@ 2014-04-23 20:45 ` Jonathan Cameron
0 siblings, 0 replies; 6+ messages in thread
From: Jonathan Cameron @ 2014-04-23 20:45 UTC (permalink / raw)
To: Randy Dunlap, Masanari Iida, linux-iio, devel; +Cc: gregkh
On 22/04/14 22:41, Randy Dunlap wrote:
> On 04/22/14 04:23, Masanari Iida wrote:
>> Correct spelling typo in comment within staging/iio
>>
>> Signed-off-by: Masanari Iida <standby24x7@gmail.com>
>
> Acked-by: Randy Dunlap <rdunlap@infradead.org>
Oh good, a cut and paste typo ;)
Anyhow, applied to the togreg branch of iio.git
Might not be pushed out for a little while as I'm travelling.
Note that a fair bit of fuzz occurred but given the nature of the
patch I doubt I managed to mess this one up.
Thanks for noticing and fixing this one.
Jonathan
>
>> ---
>> drivers/staging/iio/adc/ad7606.h | 4 ++--
>> drivers/staging/iio/adc/ad7816.c | 2 +-
>> drivers/staging/iio/adc/ad799x.h | 2 +-
>> drivers/staging/iio/addac/adt7316.c | 4 ++--
>> drivers/staging/iio/cdc/ad7152.c | 2 +-
>> drivers/staging/iio/cdc/ad7746.c | 2 +-
>> 6 files changed, 8 insertions(+), 8 deletions(-)
>>
>> diff --git a/drivers/staging/iio/adc/ad7606.h b/drivers/staging/iio/adc/ad7606.h
>> index 93c7299..ec89d05 100644
>> --- a/drivers/staging/iio/adc/ad7606.h
>> +++ b/drivers/staging/iio/adc/ad7606.h
>> @@ -14,7 +14,7 @@
>> */
>>
>> /**
>> - * struct ad7606_platform_data - platform/board specifc information
>> + * struct ad7606_platform_data - platform/board specific information
>> * @default_os: default oversampling value {0, 2, 4, 8, 16, 32, 64}
>> * @default_range: default range +/-{5000, 10000} mVolt
>> * @gpio_convst: number of gpio connected to the CONVST pin
>> @@ -41,7 +41,7 @@ struct ad7606_platform_data {
>> };
>>
>> /**
>> - * struct ad7606_chip_info - chip specifc information
>> + * struct ad7606_chip_info - chip specific information
>> * @name: identification string for chip
>> * @int_vref_mv: the internal reference voltage
>> * @channels: channel specification
>> diff --git a/drivers/staging/iio/adc/ad7816.c b/drivers/staging/iio/adc/ad7816.c
>> index 2369cf2..158d770 100644
>> --- a/drivers/staging/iio/adc/ad7816.c
>> +++ b/drivers/staging/iio/adc/ad7816.c
>> @@ -40,7 +40,7 @@
>>
>>
>> /*
>> - * struct ad7816_chip_info - chip specifc information
>> + * struct ad7816_chip_info - chip specific information
>> */
>>
>> struct ad7816_chip_info {
>> diff --git a/drivers/staging/iio/adc/ad799x.h b/drivers/staging/iio/adc/ad799x.h
>> index fc8c852..70ddfa2 100644
>> --- a/drivers/staging/iio/adc/ad799x.h
>> +++ b/drivers/staging/iio/adc/ad799x.h
>> @@ -76,7 +76,7 @@ enum {
>> struct ad799x_state;
>>
>> /**
>> - * struct ad799x_chip_info - chip specifc information
>> + * struct ad799x_chip_info - chip specific information
>> * @channel: channel specification
>> * @num_channels: number of channels
>> * @monitor_mode: whether the chip supports monitor interrupts
>> diff --git a/drivers/staging/iio/addac/adt7316.c b/drivers/staging/iio/addac/adt7316.c
>> index 9f0ebb3..5f1770e 100644
>> --- a/drivers/staging/iio/addac/adt7316.c
>> +++ b/drivers/staging/iio/addac/adt7316.c
>> @@ -172,7 +172,7 @@
>> #define ID_ADT75XX 0x10
>>
>> /*
>> - * struct adt7316_chip_info - chip specifc information
>> + * struct adt7316_chip_info - chip specific information
>> */
>>
>> struct adt7316_chip_info {
>> @@ -208,7 +208,7 @@ struct adt7316_chip_info {
>> (ADT7316_TEMP_INT_MASK)
>>
>> /*
>> - * struct adt7316_chip_info - chip specifc information
>> + * struct adt7316_chip_info - chip specific information
>> */
>>
>> struct adt7316_limit_regs {
>> diff --git a/drivers/staging/iio/cdc/ad7152.c b/drivers/staging/iio/cdc/ad7152.c
>> index f2c309d..87110d9 100644
>> --- a/drivers/staging/iio/cdc/ad7152.c
>> +++ b/drivers/staging/iio/cdc/ad7152.c
>> @@ -78,7 +78,7 @@ enum {
>> };
>>
>> /*
>> - * struct ad7152_chip_info - chip specifc information
>> + * struct ad7152_chip_info - chip specific information
>> */
>>
>> struct ad7152_chip_info {
>> diff --git a/drivers/staging/iio/cdc/ad7746.c b/drivers/staging/iio/cdc/ad7746.c
>> index cbb1588..e6e9eaa 100644
>> --- a/drivers/staging/iio/cdc/ad7746.c
>> +++ b/drivers/staging/iio/cdc/ad7746.c
>> @@ -91,7 +91,7 @@
>> #define AD7746_CAPDAC_DACP(x) ((x) & 0x7F)
>>
>> /*
>> - * struct ad7746_chip_info - chip specifc information
>> + * struct ad7746_chip_info - chip specific information
>> */
>>
>> struct ad7746_chip_info {
>>
>
>
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2014-04-23 20:44 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-07 16:18 [PATCH] staging, iio: Fix typo in iio Masanari Iida
2012-05-07 19:35 ` Hennerich, Michael
2012-05-08 12:41 ` Jonathan Cameron
-- strict thread matches above, loose matches on Subject: below --
2014-04-22 11:23 [PATCH] staging: " Masanari Iida
2014-04-22 21:41 ` Randy Dunlap
2014-04-23 20:45 ` Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).