From patchwork Mon Dec 12 20:04:37 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 87750 Delivered-To: patch@linaro.org Received: by 10.140.20.101 with SMTP id 92csp1838812qgi; Mon, 12 Dec 2016 12:13:00 -0800 (PST) X-Received: by 10.84.217.216 with SMTP id d24mr189604805plj.10.1481573580716; Mon, 12 Dec 2016 12:13:00 -0800 (PST) Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id a17si44796606pgg.89.2016.12.12.12.13.00; Mon, 12 Dec 2016 12:13:00 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; dkim=pass header.i=@nifty.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753543AbcLLUMu (ORCPT + 25 others); Mon, 12 Dec 2016 15:12:50 -0500 Received: from conuserg-11.nifty.com ([210.131.2.78]:36929 "EHLO conuserg-11.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753174AbcLLUJh (ORCPT ); Mon, 12 Dec 2016 15:09:37 -0500 Received: from grover.sesame (FL1-111-169-71-157.osk.mesh.ad.jp [111.169.71.157]) (authenticated) by conuserg-11.nifty.com with ESMTP id uBCK7cex013817; Tue, 13 Dec 2016 05:07:49 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-11.nifty.com uBCK7cex013817 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1481573270; bh=KFmM/a7eHOWHUNM0/NNco2w2Oz5yy5Y3UZ1utACtGjE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=EnQPP/f0DP97BmPjAxkXWusRzY23JjcJ/V46P1eNEqwgnHD9kvkkbgh6837+1LGGN wCq8TKQm0G9lO0VL4WLxuA/hn+smv2MfoVuitrXerzCnMgOXyA8WXW8TV6alEyjEs5 oO5eE1h5+cTGcj0ZbrMVzpP9NWLVPI8fyAj07qv6/vKRbW2Sv8167UG69lZQ62lBgQ mZuBsT2apqyD1+co19CqItwk9CtGM14553jDi1wclqe9hF9d+HamV7tnfgXdJNUk7t NPrBIh1b18ZXhCrokcDzeu6oi/ty4u+Il2b2O9jM0hUVsS9GLsBHUg3lTIDPUP2Vpn VhgEunrOUe+Xg== X-Nifty-SrcIP: [111.169.71.157] From: Masahiro Yamada To: Andrew Morton Cc: Randy Dunlap , Kees Cook , Zhao Lei , Joe Perches , Yoshihiro Shimoda , Geert Uytterhoeven , Masahiro Yamada , linux-kernel@vger.kernel.org Subject: [PATCH 05/31] scripts/spelling.txt: add "an one" pattern and fix typo instances Date: Tue, 13 Dec 2016 05:04:37 +0900 Message-Id: <1481573103-11329-6-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1481573103-11329-1-git-send-email-yamada.masahiro@socionext.com> References: <1481573103-11329-1-git-send-email-yamada.masahiro@socionext.com> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Fix typos and add the following to the scripts/spelling.txt: an one||a one I dropped the "an" before "one or more" in drivers/net/ethernet/sfc/mcdi_pcol.h. Signed-off-by: Masahiro Yamada --- arch/s390/kernel/vtime.c | 2 +- drivers/net/ethernet/sfc/mcdi_pcol.h | 2 +- drivers/usb/core/devio.c | 2 +- scripts/spelling.txt | 1 + tools/perf/util/dso.c | 2 +- 5 files changed, 5 insertions(+), 4 deletions(-) -- 2.7.4 diff --git a/arch/s390/kernel/vtime.c b/arch/s390/kernel/vtime.c index 6b246aa..8bf370c 100644 --- a/arch/s390/kernel/vtime.c +++ b/arch/s390/kernel/vtime.c @@ -310,7 +310,7 @@ static void __add_vtimer(struct vtimer_list *timer, int periodic) } /* - * add_virt_timer - add an oneshot virtual CPU timer + * add_virt_timer - add a oneshot virtual CPU timer */ void add_virt_timer(struct vtimer_list *timer) { diff --git a/drivers/net/ethernet/sfc/mcdi_pcol.h b/drivers/net/ethernet/sfc/mcdi_pcol.h index 35cc3d4..573f9de 100644 --- a/drivers/net/ethernet/sfc/mcdi_pcol.h +++ b/drivers/net/ethernet/sfc/mcdi_pcol.h @@ -10832,7 +10832,7 @@ /***********************************/ /* MC_CMD_GET_LICENSED_V3_FEATURE_STATES - * Query the state of an one or more licensed features. (Note that the actual + * Query the state of one or more licensed features. (Note that the actual * state may be invalidated by the MC_CMD_LICENSING_V3 OP_UPDATE_LICENSE * operation or a reboot of the MC.) Used for V3 licensing (Medford) */ diff --git a/drivers/usb/core/devio.c b/drivers/usb/core/devio.c index 4016dae..0f487f3 100644 --- a/drivers/usb/core/devio.c +++ b/drivers/usb/core/devio.c @@ -2346,7 +2346,7 @@ static int proc_drop_privileges(struct usb_dev_state *ps, void __user *arg) if (copy_from_user(&data, arg, sizeof(data))) return -EFAULT; - /* This is an one way operation. Once privileges are + /* This is a one way operation. Once privileges are * dropped, you cannot regain them. You may however reissue * this ioctl to shrink the allowed interfaces mask. */ diff --git a/scripts/spelling.txt b/scripts/spelling.txt index fa11e37b..dddcac9 100644 --- a/scripts/spelling.txt +++ b/scripts/spelling.txt @@ -87,6 +87,7 @@ amout||amount an union||a union an user||a user an userspace||a userspace +an one||a one analysator||analyzer ang||and anniversery||anniversary diff --git a/tools/perf/util/dso.c b/tools/perf/util/dso.c index d2c6cdd..163ef31 100644 --- a/tools/perf/util/dso.c +++ b/tools/perf/util/dso.c @@ -925,7 +925,7 @@ static struct dso *__dso__findlink_by_longname(struct rb_root *root, if (rc == 0) { /* * In case the new DSO is a duplicate of an existing - * one, print an one-time warning & put the new entry + * one, print a one-time warning & put the new entry * at the end of the list of duplicates. */ if (!dso || (dso == this))