From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52171) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1euKBb-0004JY-Au for qemu-devel@nongnu.org; Fri, 09 Mar 2018 10:44:00 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1euKBa-0003AN-Fr for qemu-devel@nongnu.org; Fri, 09 Mar 2018 10:43:59 -0500 Received: from mail-oi0-x244.google.com ([2607:f8b0:4003:c06::244]:39712) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1euKBa-0003A2-BQ for qemu-devel@nongnu.org; Fri, 09 Mar 2018 10:43:58 -0500 Received: by mail-oi0-x244.google.com with SMTP id t185so7270112oif.6 for ; Fri, 09 Mar 2018 07:43:58 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <20180309153654.13518-8-f4bug@amsat.org> References: <20180309153654.13518-1-f4bug@amsat.org> <20180309153654.13518-8-f4bug@amsat.org> From: Peter Maydell Date: Fri, 9 Mar 2018 15:43:37 +0000 Message-ID: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 7/8] sdhci: Fix a typo in comment List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: =?UTF-8?Q?Philippe_Mathieu=2DDaud=C3=A9?= Cc: Alistair Francis , "Edgar E . Iglesias" , QEMU Developers On 9 March 2018 at 15:36, Philippe Mathieu-Daud=C3=A9 wro= te: > Signed-off-by: Philippe Mathieu-Daud=C3=A9 > --- > hw/sd/sdhci.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/hw/sd/sdhci.c b/hw/sd/sdhci.c > index 97b4a473c8..1b828b104d 100644 > --- a/hw/sd/sdhci.c > +++ b/hw/sd/sdhci.c > @@ -433,13 +433,13 @@ static void sdhci_read_block_from_card(SDHCIState *= s) > for (index =3D 0; index < blk_size; index++) { > data =3D sdbus_read_data(&s->sdbus); > if (!FIELD_EX32(s->hostctl2, SDHC_HOSTCTL2, EXECUTE_TUNING)) { > - /* Device is not in tunning */ > + /* Device is not in tuning */ > s->fifo_buffer[index] =3D data; > } > } > > if (FIELD_EX32(s->hostctl2, SDHC_HOSTCTL2, EXECUTE_TUNING)) { > - /* Device is in tunning */ > + /* Device is in tuning */ > s->hostctl2 &=3D ~R_SDHC_HOSTCTL2_EXECUTE_TUNING_MASK; > s->hostctl2 |=3D R_SDHC_HOSTCTL2_SAMPLING_CLKSEL_MASK; > s->prnsts &=3D ~(SDHC_DAT_LINE_ACTIVE | SDHC_DOING_READ | > -- > 2.16.2 Reviewed-by: Peter Maydell thanks -- PMM