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=-15.8 required=3.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED 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 ED51FC433E0 for ; Fri, 26 Feb 2021 01:21:40 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id 8D60864F29 for ; Fri, 26 Feb 2021 01:21:40 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 8D60864F29 Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=linux-foundation.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 2971C6B00F3; Thu, 25 Feb 2021 20:21:40 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id 24F7C6B00F4; Thu, 25 Feb 2021 20:21:40 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 1172A6B00F5; Thu, 25 Feb 2021 20:21:40 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0203.hostedemail.com [216.40.44.203]) by kanga.kvack.org (Postfix) with ESMTP id E86656B00F3 for ; Thu, 25 Feb 2021 20:21:39 -0500 (EST) Received: from smtpin07.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay05.hostedemail.com (Postfix) with ESMTP id B76EE18478D86 for ; Fri, 26 Feb 2021 01:21:39 +0000 (UTC) X-FDA: 77858666718.07.A839BB0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by imf16.hostedemail.com (Postfix) with ESMTP id C14B480192DA for ; Fri, 26 Feb 2021 01:21:38 +0000 (UTC) Received: by mail.kernel.org (Postfix) with ESMTPSA id 3711964F3F; Fri, 26 Feb 2021 01:21:38 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linux-foundation.org; s=korg; t=1614302498; bh=o7RZoYl4MsKFnkBMgMl6UyxRQsLI5RyaqpNlKKD92p8=; h=Date:From:To:Subject:In-Reply-To:From; b=CRHuLs/0jlhAxVW2ZzDVapPLebiiDHGMObyso5T/kgpKQSEKSLBBmw/Gy0rzsnTAK FmE5qCU2vKNjWvJVaj4sn3wXa0zPiD8CYSy1tG88/ZsL8KsTAudmW3MChhzo0b04EE qfR2Twd8S2ypb1XyTw5ew1xludlrGGnW+iPXJuCs= Date: Thu, 25 Feb 2021 17:21:37 -0800 From: Andrew Morton To: akpm@linux-foundation.org, geert+renesas@glider.be, linux-mm@kvack.org, mm-commits@vger.kernel.org, torvalds@linux-foundation.org Subject: [patch 098/118] include/linux/bitops.h: spelling s/synomyn/synonym/ Message-ID: <20210226012137.TP8MGTliP%akpm@linux-foundation.org> In-Reply-To: <20210225171452.713967e96554bb6a53e44a19@linux-foundation.org> User-Agent: s-nail v14.8.16 X-Stat-Signature: quhthybj9dd55oxiu1onnkfoh14e57pm X-Rspamd-Server: rspam05 X-Rspamd-Queue-Id: C14B480192DA Received-SPF: none (linux-foundation.org>: No applicable sender policy available) receiver=imf16; identity=mailfrom; envelope-from=""; helo=mail.kernel.org; client-ip=198.145.29.99 X-HE-DKIM-Result: pass/pass X-HE-Tag: 1614302498-671969 X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: From: Geert Uytterhoeven Subject: include/linux/bitops.h: spelling s/synomyn/synonym/ Fix a misspelling of "synonym". Link: https://lkml.kernel.org/r/20210108105305.2028120-1-geert+renesas@glider.be Signed-off-by: Geert Uytterhoeven Signed-off-by: Andrew Morton --- include/linux/bitops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/include/linux/bitops.h~bitops-spelling-s-synomyn-synonym +++ a/include/linux/bitops.h @@ -214,7 +214,7 @@ static inline int get_count_order_long(u * __ffs64 - find first set bit in a 64 bit word * @word: The 64 bit word * - * On 64 bit arches this is a synomyn for __ffs + * On 64 bit arches this is a synonym for __ffs * The result is not defined if no bits are set, so check that @word * is non-zero before calling this. */ _