Received: by 2002:a05:6a10:2785:0:0:0:0 with SMTP id ia5csp210350pxb; Fri, 8 Jan 2021 02:57:58 -0800 (PST) X-Google-Smtp-Source: ABdhPJzJA/k04J69RPFNKpMI0X8E1tSbdmeXZcrJRukUZPFvDjWL/HZBxK43/IqssEIzJtsUodA5 X-Received: by 2002:a17:906:4a4f:: with SMTP id a15mr2328090ejv.541.1610103478643; Fri, 08 Jan 2021 02:57:58 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1610103478; cv=none; d=google.com; s=arc-20160816; b=LWXxssTXmXz3lTgyEjoXTlWzeRs/ozd0NIBHnbHFdgHHbCSa3+LkiieQ2WlJDXgpvc mJHkoW9agOiNPkJdhhQa3t5QIW18YqcG9PFryFVw8+rvPa+aA+NqnL+dIJWWCK5kkz6P TVAO7VyQE9LANzZ1kgKWDrcNrEQRzXoyArICDKsNXp5ZznhdeIKrrWSSGUhExWXvaoZc SHcCuvY1+n7H9py+njTMpSfQ9tCS7KoF6odg5d9enC2Tom70sbbbcj0DQfEAzOcfFu0C MTZJmdrVFBalW5cWgnGVcmBXeUfUZFXWXCQOtF3TCArnUVBWph9/TtFhO74JzbZLSVf+ zSZQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:content-transfer-encoding:mime-version :message-id:date:subject:cc:to:from; bh=ZB8n951G9eDRipRhAFD3GuVPCMkkYLt0vcMEWj1L7NI=; b=iLUp7YzfNmKIK5uPy9ozlLRkT3UNGuxzp9LyyPPkBqxZYixptzVf+AQNPGj6ISMXGU TA3qt+uh6p6QykUaVBmbG/y5TFz6e/ovC2+FRTHc8fYFk3tGPGBuImFpqxxQLS0cgjDm AAHUi757q13iR+wiVmInAhXZ0zn2O5RFmRMkQiFxkygY7XBLvQpHa+t0g9Sj6EbecUeE BOooieGoF2NVi4tqOyrTvmsHOr9uq2tdhlQTkVmYm2lcZnRzjeyre8jLN2xcQq1wtbjv DKt8XgGVUGddgZF+RYMZg1sGjz4uMB4sdZs6HsoC4zpaAJFnokUh2qGtky1z9FZSs1hV 4SHg== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id b12si3444554edz.497.2021.01.08.02.57.34; Fri, 08 Jan 2021 02:57:58 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727661AbhAHK4L (ORCPT + 99 others); Fri, 8 Jan 2021 05:56:11 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:49958 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727700AbhAHK4L (ORCPT ); Fri, 8 Jan 2021 05:56:11 -0500 Received: from laurent.telenet-ops.be (laurent.telenet-ops.be [IPv6:2a02:1800:110:4::f00:19]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0E598C0612F5 for ; Fri, 8 Jan 2021 02:55:30 -0800 (PST) Received: from ramsan.of.borg ([84.195.186.194]) by laurent.telenet-ops.be with bizsmtp id EAvV240024C55Sk01AvVpT; Fri, 08 Jan 2021 11:55:29 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.93) (envelope-from ) id 1kxpQW-0020Ae-M7; Fri, 08 Jan 2021 11:55:28 +0100 Received: from geert by rox.of.borg with local (Exim 4.93) (envelope-from ) id 1kxpQW-008VkE-8j; Fri, 08 Jan 2021 11:55:28 +0100 From: Geert Uytterhoeven To: Thomas Bogendoerfer , Jiri Kosina Cc: Arnd Bergmann , linux-mips@vger.kernel.org, linux-kernel@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH trivial] MIPS: bitops: Fix reference to ffz location Date: Fri, 8 Jan 2021 11:55:26 +0100 Message-Id: <20210108105526.2028605-1-geert+renesas@glider.be> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Unlike most other architectures, MIPS defines ffz() below ffs(). Signed-off-by: Geert Uytterhoeven --- arch/mips/include/asm/bitops.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/mips/include/asm/bitops.h b/arch/mips/include/asm/bitops.h index a74769940fbd983c..1b08f9f38593ce15 100644 --- a/arch/mips/include/asm/bitops.h +++ b/arch/mips/include/asm/bitops.h @@ -435,7 +435,7 @@ static inline int fls(unsigned int x) * * This is defined the same way as * the libc and compiler builtin ffs routines, therefore - * differs in spirit from the above ffz (man ffs). + * differs in spirit from the below ffz (man ffs). */ static inline int ffs(int word) { -- 2.25.1