From patchwork Wed Jun 22 06:14:42 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jiang Jian X-Patchwork-Id: 12890205 Received: from smtpbg.qq.com (smtpbg138.qq.com [106.55.201.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 9BC3810FF for ; Wed, 22 Jun 2022 06:18:16 +0000 (UTC) X-QQ-mid: bizesmtp71t1655878489t5m2g26e Received: from ubuntu.localdomain ( [106.117.99.132]) by bizesmtp.qq.com (ESMTP) with id ; Wed, 22 Jun 2022 14:14:43 +0800 (CST) X-QQ-SSF: 01000000008000B0B000C00A0000000 X-QQ-FEAT: JuPszP98+7oSFkGdit87xSSuthfvabXG8jBovL2UEHgso+gkyvguvO+O5DK5j A8Z4q55VdYjOlcPp+YOB5japIP9f07MK9eMmOondf3jq/q/t7MCWLu6wesJBncrH6WUGnqd 5RcjTRlwqQSfJj1TDTyeTSVEPOINf0tFdCOzyyuPJwCqzKYPV7Lw6qp+AKIo50gqbmisNIb wHP4ywNsEi0+xgzUNrmvpvA2Jkd5RAF2dyJzUm7Bkt/7x3CzOM7SdlzCn/XtTr2LeUcj0ra HoJwOutPmQC015/fxPQ8EJjcEVjTLdHsGgtxO5h+7o/B/NEd+14CGVA7hqgayayXk5P4FDq DothxHCZC47r7D5Mm0= X-QQ-GoodBg: 0 From: Jiang Jian To: bleung@chromium.org Cc: jiangjian@cdjrlc.com, chrome-platform@lists.linux.dev, linux-kernel@vger.kernel.org Subject: [PATCH] platform/chrome: wilco_ec: event: Fix typo in comment Date: Wed, 22 Jun 2022 14:14:42 +0800 Message-Id: <20220622061442.18242-1-jiangjian@cdjrlc.com> X-Mailer: git-send-email 2.17.1 X-QQ-SENDSIZE: 520 Feedback-ID: bizesmtp:cdjrlc.com:qybgspam:qybgspam10 Precedence: bulk X-Mailing-List: chrome-platform@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: Drop the redundant word 'the'. Signed-off-by: Jiang Jian --- drivers/platform/chrome/wilco_ec/event.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/platform/chrome/wilco_ec/event.c b/drivers/platform/chrome/wilco_ec/event.c index 814518509739..32e400590be5 100644 --- a/drivers/platform/chrome/wilco_ec/event.c +++ b/drivers/platform/chrome/wilco_ec/event.c @@ -343,7 +343,7 @@ static __poll_t event_poll(struct file *filp, poll_table *wait) * * Removes the first event from the queue, places it in the passed buffer. * - * If there are no events in the the queue, then one of two things happens, + * If there are no events in the queue, then one of two things happens, * depending on if the file was opened in nonblocking mode: If in nonblocking * mode, then return -EAGAIN to say there's no data. If in blocking mode, then * block until an event is available.