Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932336AbeAHMrU (ORCPT + 1 other); Mon, 8 Jan 2018 07:47:20 -0500 Received: from mx0a-001b2d01.pphosted.com ([148.163.156.1]:43878 "EHLO mx0a-001b2d01.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932172AbeAHMrR (ORCPT ); Mon, 8 Jan 2018 07:47:17 -0500 MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII; format=flowed Content-Transfer-Encoding: 7bit Date: Mon, 08 Jan 2018 13:47:16 +0100 From: haver To: SF Markus Elfring Cc: kernel-janitors@vger.kernel.org, Arnd Bergmann , Greg Kroah-Hartman , "Guilherme G. Piccoli" , LKML , =?UTF-8?Q?J=C3=B6rg-Stephan_Vogt?= , Michael Jung , =?UTF-8?Q?Michael_R=C3=BCttger?= , trivial@kernel.org Subject: Re: [PATCH 2/3] GenWQE: Fix a typo in two comments In-Reply-To: References: User-Agent: Roundcube Webmail/1.0.1 X-TM-AS-GCONF: 00 x-cbid: 18010812-0008-0000-0000-000002BBD63D X-IBM-SpamModules-Scores: X-IBM-SpamModules-Versions: BY=3.00008339; HX=3.00000241; KW=3.00000007; PH=3.00000004; SC=3.00000245; SDB=6.00972006; UDB=6.00492385; IPR=6.00751956; BA=6.00005767; NDR=6.00000001; ZLA=6.00000005; ZF=6.00000009; ZB=6.00000000; ZP=6.00000000; ZH=6.00000000; ZU=6.00000002; MB=3.00018922; XFM=3.00000015; UTC=2018-01-08 12:47:14 X-IBM-AV-DETECTION: SAVI=unused REMOTE=unused XFE=unused x-cbparentid: 18010812-0009-0000-0000-000037D5FA6B Message-Id: X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2018-01-08_08:,, signatures=0 X-Proofpoint-Spam-Details: rule=outbound_notspam policy=outbound score=0 priorityscore=1501 malwarescore=0 suspectscore=2 phishscore=0 bulkscore=0 spamscore=0 clxscore=1015 lowpriorityscore=0 impostorscore=0 adultscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1709140000 definitions=main-1801080186 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: Hi Markus, On 2018-01-08 10:42, SF Markus Elfring wrote: > From: Markus Elfring > Date: Mon, 8 Jan 2018 09:57:10 +0100 > > Add a missing character in two words of these descriptions. > > Signed-off-by: Markus Elfring > --- > drivers/misc/genwqe/card_utils.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/drivers/misc/genwqe/card_utils.c > b/drivers/misc/genwqe/card_utils.c > index 55c389a9e7d7..0b466664c908 100644 > --- a/drivers/misc/genwqe/card_utils.c > +++ b/drivers/misc/genwqe/card_utils.c > @@ -453,7 +453,7 @@ int genwqe_setup_sgl(struct genwqe_dev *cd, struct > genwqe_sgl *sgl, > s += 8; /* continue 8 elements further */ > } > fixup: > - if (j == 1) { /* combining happend on last entry! */ > + if (j == 1) { /* combining happened on last entry! */ > s -= 8; /* full shift needed on previous sgl block */ > j = 7; /* shift all elements */ > } > @@ -471,7 +471,7 @@ int genwqe_setup_sgl(struct genwqe_dev *cd, struct > genwqe_sgl *sgl, > * genwqe_free_sync_sgl() - Free memory for sgl and overlapping pages > * > * After the DMA transfer has been completed we free the memory for > - * the sgl and the cached pages. Data is being transfered from cached > + * the sgl and the cached pages. Data is being transferred from cached > * pages into user-space buffers. > */ > int genwqe_free_sync_sgl(struct genwqe_dev *cd, struct genwqe_sgl > *sgl) Looks good to me. Thanks. Frank Acked-by: Frank Haverkamp