linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH V2] iio:imu:mpu6050: Modify matricies to matrices
@ 2021-03-17  6:19 Guoqing chi
  2021-03-17 15:24 ` Randy Dunlap
  0 siblings, 1 reply; 4+ messages in thread
From: Guoqing chi @ 2021-03-17  6:19 UTC (permalink / raw)
  To: jic23; +Cc: linux-kernel, chiguoqing

From: Guoqing Chi <chiguoqing@yulong.com>

The plural of "matrix" is "matrices".

Signed-off-by: Guoqing Chi <chiguoqing@yulong.com>
---
V2:fix "complex number of" to "plural of".

 include/linux/platform_data/invensense_mpu6050.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/linux/platform_data/invensense_mpu6050.h b/include/linux/platform_data/invensense_mpu6050.h
index 93974f4cfba1..f05b37521f67 100644
--- a/include/linux/platform_data/invensense_mpu6050.h
+++ b/include/linux/platform_data/invensense_mpu6050.h
@@ -12,7 +12,7 @@
  *			mounting matrix retrieved from device-tree)
  *
  * Contains platform specific information on how to configure the MPU6050 to
- * work on this platform.  The orientation matricies are 3x3 rotation matricies
+ * work on this platform.  The orientation matrices are 3x3 rotation matrices
  * that are applied to the data to rotate from the mounting orientation to the
  * platform orientation.  The values must be one of 0, 1, or -1 and each row and
  * column should have exactly 1 non-zero value.
-- 
2.17.1



^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH V2] iio:imu:mpu6050: Modify matricies to matrices
  2021-03-17  6:19 [PATCH V2] iio:imu:mpu6050: Modify matricies to matrices Guoqing chi
@ 2021-03-17 15:24 ` Randy Dunlap
  2021-03-18  1:20   ` Guoqing Chi
  0 siblings, 1 reply; 4+ messages in thread
From: Randy Dunlap @ 2021-03-17 15:24 UTC (permalink / raw)
  To: Guoqing chi, jic23; +Cc: linux-kernel, chiguoqing

On 3/16/21 11:19 PM, Guoqing chi wrote:
> From: Guoqing Chi <chiguoqing@yulong.com>
> 
> The plural of "matrix" is "matrices".
> 
> Signed-off-by: Guoqing Chi <chiguoqing@yulong.com>

Acked-by: Randy Dunlap <rdunlap@infradead.org>

Thanks.

> ---
> V2:fix "complex number of" to "plural of".
> 
>  include/linux/platform_data/invensense_mpu6050.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/include/linux/platform_data/invensense_mpu6050.h b/include/linux/platform_data/invensense_mpu6050.h
> index 93974f4cfba1..f05b37521f67 100644
> --- a/include/linux/platform_data/invensense_mpu6050.h
> +++ b/include/linux/platform_data/invensense_mpu6050.h
> @@ -12,7 +12,7 @@
>   *			mounting matrix retrieved from device-tree)
>   *
>   * Contains platform specific information on how to configure the MPU6050 to
> - * work on this platform.  The orientation matricies are 3x3 rotation matricies
> + * work on this platform.  The orientation matrices are 3x3 rotation matrices
>   * that are applied to the data to rotate from the mounting orientation to the
>   * platform orientation.  The values must be one of 0, 1, or -1 and each row and
>   * column should have exactly 1 non-zero value.
> 


-- 
~Randy


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH V2] iio:imu:mpu6050: Modify matricies to matrices
  2021-03-17 15:24 ` Randy Dunlap
@ 2021-03-18  1:20   ` Guoqing Chi
  2021-03-20 18:42     ` Jonathan Cameron
  0 siblings, 1 reply; 4+ messages in thread
From: Guoqing Chi @ 2021-03-18  1:20 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: jic23, linux-kernel, chiguoqing

On Wed, 17 Mar 2021 08:24:33 -0700
Randy Dunlap <rdunlap@infradead.org> wrote:

> On 3/16/21 11:19 PM, Guoqing chi wrote:
> > From: Guoqing Chi <chiguoqing@yulong.com>
> > 
> > The plural of "matrix" is "matrices".
> > 
> > Signed-off-by: Guoqing Chi <chiguoqing@yulong.com>  
> 
> Acked-by: Randy Dunlap <rdunlap@infradead.org>
> 
> Thanks.

Sorry to my mistake.
I will add this for patch V3.
Thanks.

> 
> > ---
> > V2:fix "complex number of" to "plural of".
> > 
> >  include/linux/platform_data/invensense_mpu6050.h | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/include/linux/platform_data/invensense_mpu6050.h
> > b/include/linux/platform_data/invensense_mpu6050.h index
> > 93974f4cfba1..f05b37521f67 100644 ---
> > a/include/linux/platform_data/invensense_mpu6050.h +++
> > b/include/linux/platform_data/invensense_mpu6050.h @@ -12,7 +12,7 @@
> >   *			mounting matrix retrieved from
> > device-tree) *
> >   * Contains platform specific information on how to configure the
> > MPU6050 to
> > - * work on this platform.  The orientation matricies are 3x3
> > rotation matricies
> > + * work on this platform.  The orientation matrices are 3x3
> > rotation matrices
> >   * that are applied to the data to rotate from the mounting
> > orientation to the
> >   * platform orientation.  The values must be one of 0, 1, or -1
> > and each row and
> >   * column should have exactly 1 non-zero value.
> >   
> 
> 


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH V2] iio:imu:mpu6050: Modify matricies to matrices
  2021-03-18  1:20   ` Guoqing Chi
@ 2021-03-20 18:42     ` Jonathan Cameron
  0 siblings, 0 replies; 4+ messages in thread
From: Jonathan Cameron @ 2021-03-20 18:42 UTC (permalink / raw)
  To: Guoqing Chi; +Cc: Randy Dunlap, linux-kernel, chiguoqing

On Thu, 18 Mar 2021 09:20:51 +0800
Guoqing Chi <chi962464zy@163.com> wrote:

> On Wed, 17 Mar 2021 08:24:33 -0700
> Randy Dunlap <rdunlap@infradead.org> wrote:
> 
> > On 3/16/21 11:19 PM, Guoqing chi wrote:  
> > > From: Guoqing Chi <chiguoqing@yulong.com>
> > > 
> > > The plural of "matrix" is "matrices".
> > > 
> > > Signed-off-by: Guoqing Chi <chiguoqing@yulong.com>    
> > 
> > Acked-by: Randy Dunlap <rdunlap@infradead.org>
> > 
> > Thanks.  
> 
> Sorry to my mistake.
> I will add this for patch V3.
> Thanks.
Please make sure to cc linux-iio@vger.kernel.org

Thanks,

Jonathan

> 
> >   
> > > ---
> > > V2:fix "complex number of" to "plural of".
> > > 
> > >  include/linux/platform_data/invensense_mpu6050.h | 2 +-
> > >  1 file changed, 1 insertion(+), 1 deletion(-)
> > > 
> > > diff --git a/include/linux/platform_data/invensense_mpu6050.h
> > > b/include/linux/platform_data/invensense_mpu6050.h index
> > > 93974f4cfba1..f05b37521f67 100644 ---
> > > a/include/linux/platform_data/invensense_mpu6050.h +++
> > > b/include/linux/platform_data/invensense_mpu6050.h @@ -12,7 +12,7 @@
> > >   *			mounting matrix retrieved from
> > > device-tree) *
> > >   * Contains platform specific information on how to configure the
> > > MPU6050 to
> > > - * work on this platform.  The orientation matricies are 3x3
> > > rotation matricies
> > > + * work on this platform.  The orientation matrices are 3x3
> > > rotation matrices
> > >   * that are applied to the data to rotate from the mounting
> > > orientation to the
> > >   * platform orientation.  The values must be one of 0, 1, or -1
> > > and each row and
> > >   * column should have exactly 1 non-zero value.
> > >     
> > 
> >   
> 


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-03-20 18:43 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-17  6:19 [PATCH V2] iio:imu:mpu6050: Modify matricies to matrices Guoqing chi
2021-03-17 15:24 ` Randy Dunlap
2021-03-18  1:20   ` Guoqing Chi
2021-03-20 18:42     ` 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).