From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-14.2 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FORGED_FROMDOMAIN,FREEMAIL_FROM, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_SANE_2 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id F0731C433E0 for ; Thu, 18 Mar 2021 01:21:44 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 85AC964E02 for ; Thu, 18 Mar 2021 01:21:44 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230020AbhCRBVN (ORCPT ); Wed, 17 Mar 2021 21:21:13 -0400 Received: from mail-m974.mail.163.com ([123.126.97.4]:57546 "EHLO mail-m974.mail.163.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229512AbhCRBVI (ORCPT ); Wed, 17 Mar 2021 21:21:08 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=163.com; s=s110527; h=Date:From:Subject:Message-ID:MIME-Version; bh=I23IJ tqkog6tF5WToYLuQP6LKo1y3wD29cfUp1lWilg=; b=JniNf8y7rnkwr29OCvXgN ZinJygUNYTd6OzE9Ks4sEZqhexZsMh31wBh3mIdzERMHLKuDJVuhhYM0QhnJQuFR 8Wb2XRRB4yfy+n10xEW4mV5byjj3TZXZrVlWL8xKK2QR+BqkOb3yBW0keosMDs18 +OnNaY0v8z8ETYa8a9hSGM= Received: from localhost (unknown [218.94.48.178]) by smtp4 (Coremail) with SMTP id HNxpCgDX1zzzqlJgEQpfEw--.2926S2; Thu, 18 Mar 2021 09:20:52 +0800 (CST) Date: Thu, 18 Mar 2021 09:20:51 +0800 From: Guoqing Chi To: Randy Dunlap Cc: jic23@kernel.org, linux-kernel@vger.kernel.org, chiguoqing@yulong.com Subject: Re: [PATCH V2] iio:imu:mpu6050: Modify matricies to matrices Message-ID: <20210318092051.00005153@163.com> In-Reply-To: References: <20210317061930.478-1-chi962464zy@163.com> X-Mailer: Claws Mail 3.17.4 (GTK+ 2.24.32; x86_64-w64-mingw32) MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-CM-TRANSID: HNxpCgDX1zzzqlJgEQpfEw--.2926S2 X-Coremail-Antispam: 1Uf129KBjvJXoW7Kw15JFW8Kw18Xw43Zr18Zrb_yoW8Gw1UpF 4kGay0ka18G3WUK34ak3Zayrn5twsIgr17KasrAr4ku3sIvFn2qFs7K3W8KFn7ZrWUGw4U ZrZFgr4ruan8ZFJanT9S1TB71UUUUUUqnTZGkaVYY2UrUUUUjbIjqfuFe4nvWSU5nxnvy2 9KBjDUYxBIdaVFxhVjvjDU0xZFpf9x07jbnYwUUUUU= X-Originating-IP: [218.94.48.178] X-CM-SenderInfo: pfklmlasuwk6r16rljoofrz/xtbB9wRZRF2MYOiUZgAAsF Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, 17 Mar 2021 08:24:33 -0700 Randy Dunlap wrote: > On 3/16/21 11:19 PM, Guoqing chi wrote: > > From: Guoqing Chi > > > > The plural of "matrix" is "matrices". > > > > Signed-off-by: Guoqing Chi > > Acked-by: Randy Dunlap > > 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. > > > >