Received: by 2002:a25:f815:0:0:0:0:0 with SMTP id u21csp2831681ybd; Thu, 27 Jun 2019 21:05:06 -0700 (PDT) X-Google-Smtp-Source: APXvYqzaU7mmW5Xwm5d2YmglriGn8Kd9L9wauinKbFvkoOslEM5HqdYfCAF+37MNwOaKKK8CmzHj X-Received: by 2002:a65:63d1:: with SMTP id n17mr7348075pgv.382.1561694706126; Thu, 27 Jun 2019 21:05:06 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1561694706; cv=none; d=google.com; s=arc-20160816; b=O46n76Eoj8JFglQeIkBtSo+/CE+ixPTwtWHQEOdVTwvw9OpL84PtCfEzdwPloc0KJP 9/EobeGZoyqvfZt15ahRgOjOCzAeng/SQF5XeYWv4//4GhOXphZ2XfUv5TxAuRD149TJ 3wkVgUwszv1ZWH7p8TkD+kkbdVRwc+esN12/vA9vsI8iUx/8SMZTW1H3nUPlo7TZPcR0 Ipy9EgPSrYCvyjOmEKJKGW879OOn0dAYCXAhnb8qu9uysiQVYGisJ3OJ46dVIXqFNFU3 Q7k+U6zzKLhiNgzHn9WYYDHO7ycxQLuxjQVkVzKP4OX5LLI6e3IGBOVG81dPXBZ5tQrm G/EQ== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:message-id:date:references :in-reply-to:subject:cc:to:from; bh=YwO/Bl3QHIqkJExCe6Qbl4twuUpwIkRSh7sPGBoRgkQ=; b=jjtqlae1nAkB+f5OySczTxhEYH1gix6RmWAewIryFpY6/yAHEn6oEk17/Y3ev4hcyv VJOxkKvkQ+NutuDZMzWDd+m2jgbRE1zhH/mSYUCEa81IXXPoxTu453spof+4E05dCY22 SbvQ9vjAHyGivSWbfc4+jdfqiQsu3RMYJq/1Gqa1+PKcl+tPUtcq7AgVvzlC5EO6Wyjx daqeWMXLu1HYMDh3H+4OvWbum2xJIqHr0XflPvLyD9yvtb+dnpqeTTy8NBfNRsDv4NgN 2KwSktyUjdl+vxWu+Z3t1zrHjoYtCVHc6kXt6uT7YsXrYFiVv+L2lO9Xk+ns+MtoEAH/ wYbw== 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 j2si1113231pff.230.2019.06.27.21.04.50; Thu, 27 Jun 2019 21:05:06 -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 S1727183AbfF1EEk (ORCPT + 99 others); Fri, 28 Jun 2019 00:04:40 -0400 Received: from ozlabs.org ([203.11.71.1]:37067 "EHLO ozlabs.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725792AbfF1EEk (ORCPT ); Fri, 28 Jun 2019 00:04:40 -0400 Received: from authenticated.ozlabs.org (localhost [127.0.0.1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by mail.ozlabs.org (Postfix) with ESMTPSA id 45Zjnx6mG3z9s7h; Fri, 28 Jun 2019 14:04:37 +1000 (AEST) From: Michael Ellerman To: Denis Efremov , Simon Guo Cc: Denis Efremov , Shuah Khan , linux-kselftest@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] selftests/powerpc: ppc_asm.h: typo in the header guard In-Reply-To: <20190623155200.2147-1-efremov@linux.com> References: <20190623155200.2147-1-efremov@linux.com> Date: Fri, 28 Jun 2019 14:04:37 +1000 Message-ID: <87ef3es6cq.fsf@concordia.ellerman.id.au> MIME-Version: 1.0 Content-Type: text/plain Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Denis Efremov writes: > The guard macro __PPC_ASM_H in the header ppc_asm.h > doesn't match the #ifndef macro _PPC_ASM_H. The patch > makes them the same. > > Signed-off-by: Denis Efremov > --- > tools/testing/selftests/powerpc/stringloops/asm/ppc_asm.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) I'll merge this. Please include linuxppc-dev on powerpc selftest patches. cheers > diff --git a/tools/testing/selftests/powerpc/stringloops/asm/ppc_asm.h b/tools/testing/selftests/powerpc/stringloops/asm/ppc_asm.h > index d2c0a911f55e..2b488b78c4f2 100644 > --- a/tools/testing/selftests/powerpc/stringloops/asm/ppc_asm.h > +++ b/tools/testing/selftests/powerpc/stringloops/asm/ppc_asm.h > @@ -1,6 +1,6 @@ > /* SPDX-License-Identifier: GPL-2.0 */ > #ifndef _PPC_ASM_H > -#define __PPC_ASM_H > +#define _PPC_ASM_H > #include > > #ifndef r1 > -- > 2.21.0