Received: by 2002:a25:ab43:0:0:0:0:0 with SMTP id u61csp4629815ybi; Tue, 11 Jun 2019 09:43:15 -0700 (PDT) X-Google-Smtp-Source: APXvYqyB8yyEkmAdSeEHEJ4dVnYozMidRGtH6NKpFQpSDNfO6zIxfcx+UIxy38cItH/BhgWTe0Ri X-Received: by 2002:a17:90a:2486:: with SMTP id i6mr5294052pje.125.1560271395520; Tue, 11 Jun 2019 09:43:15 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1560271395; cv=none; d=google.com; s=arc-20160816; b=wwc4hgJOX+wn76Wwamepy0dDIyJOqfoydf5WIRCKlF28S6vcgP9BrUJ1AfAvXx7gDW 3lvw3oW8DWyJM/Bv/nr1BtPmkg2bt7TiR7Ohjq0I4S1nY5n0lMca3AuRDELmR3E43jMX P0YlFTYnhE20x9ugWRJHPfVcNHNfbyBYPNKOCjUGt+WxA9pE9ilPHRMwHY/n+uHpNXJU hZIHHUfnz1qRCMT+Wv4gTmsiegCZ2a4hOkxP4ZBXjYFVn1sHoePhaxTVrcvup7T/qyL9 ol5tPtgnu1LIT6QbzWC4YLkMPrlpYqDA1DFznPydrDw6a1iPhtnZ8dlAnFV5KzlmL4aN ZecQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:user-agent:in-reply-to :content-disposition:mime-version:references:message-id:subject:cc :to:from:date; bh=LazP+Dzpp3qEj8AM6lSGdea5jafNo1Q2w/kNuaTANhM=; b=iQ+p0qGhUyJWSQdMA1Ho4luAb6IKi+0//ljBY/3kjcKOcVsjKTRzlxRRjHFxJm2zQx Ij37REs9X1B4QrdTIPYIJnhyrK/H/44jz2S6L3kY+4sANOk955k01ZfDd8p7DJa85t50 neM7t4sU74/7ydzgx41x3X3O4PYiNuGV52F/LcUIDRK0/rI4r+oaVzLFxD2tlE+idQUx twyMmICLx9NL6WPfnDk1N5A1Yb+MsiIuoZfRjb3FMYtNXaY6t8l2t1G7xz8XT5+dxZC9 MDYZLHu/u3OzLN1uYXP8qkSbyHnTP38MkJcGKN44ONJujJ4O8kQfCyjjREu/1t5NaX5E 8MMw== ARC-Authentication-Results: i=1; mx.google.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 Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id 39si3009711pla.73.2019.06.11.09.43.00; Tue, 11 Jun 2019 09:43:15 -0700 (PDT) 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; 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 S2391816AbfFKPsi (ORCPT + 99 others); Tue, 11 Jun 2019 11:48:38 -0400 Received: from foss.arm.com ([217.140.110.172]:36450 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S2387966AbfFKPsh (ORCPT ); Tue, 11 Jun 2019 11:48:37 -0400 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 2E8F4337; Tue, 11 Jun 2019 08:48:37 -0700 (PDT) Received: from fuggles.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 7C59B3F246; Tue, 11 Jun 2019 08:48:36 -0700 (PDT) Date: Tue, 11 Jun 2019 16:48:34 +0100 From: Will Deacon To: Masahiro Yamada Cc: linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Catalin Marinas Subject: Re: [PATCH 2/2] arm64: replace _BITUL() with BIT() Message-ID: <20190611154834.GG4324@fuggles.cambridge.arm.com> References: <20190527083412.26651-1-yamada.masahiro@socionext.com> <20190527083412.26651-3-yamada.masahiro@socionext.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190527083412.26651-3-yamada.masahiro@socionext.com> User-Agent: Mutt/1.11.1+86 (6f28e57d73f2) () Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, May 27, 2019 at 05:34:12PM +0900, Masahiro Yamada wrote: > Now that BIT() can be used from assembly code, replace _BITUL() with > equivalent BIT(). > > Signed-off-by: Masahiro Yamada > --- > > arch/arm64/include/asm/sysreg.h | 82 ++++++++++++++++----------------- > 1 file changed, 41 insertions(+), 41 deletions(-) Acked-by: Will Deacon Will