Received: by 2002:a25:f815:0:0:0:0:0 with SMTP id u21csp1511316ybd; Sun, 23 Jun 2019 09:13:28 -0700 (PDT) X-Google-Smtp-Source: APXvYqz+uhcffqLVzXAUBjAsF+Qq5o+Meb1titTDmcLuie0awrd9PobS0JCNUGxpFOAT0/mbexQw X-Received: by 2002:a17:90a:22c6:: with SMTP id s64mr19815169pjc.5.1561306408048; Sun, 23 Jun 2019 09:13:28 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1561306408; cv=none; d=google.com; s=arc-20160816; b=ZDbYa5GDP/lhalsPM2Wz1VadVJtPj7FqO9nWZvtuTx3tMCTbaqBhNxzW1hDi8XZKgV 7vFUcKgds0I1FdX6PmeZ2XR+CUhan8jpIlxg3BZxv37+he1YRSD7DckEnLDApimF+ibA yHj09XRv3oqSt93eBks+vfaL7pGyft0wIl0/YAw4i4ENe+bWfeosj7t6NG0jq4DhAeP/ GjC9l8iq3I4bTsJFUx5PAFF9htOpLcXUkYR7NJNImESjiheV6bmmvX5Gmoihhp0UU7Iz e7n4MsC+4qpYi8ANnf3DsZ4JxahNW6w4HEBGcM6Wcd9wa7njHPCX+dhZ8dy2avQKz953 cgFA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:references:in-reply-to :message-id:date:subject:cc:to:from; bh=l/RGeNo+a7ouLSYcEJaVL0mx/uAZrzHSpegbwOxs/Io=; b=sDHqXe8N3t37VQXqcQlDXhNMdgzZg/YcVSncsxwrJRTzthrsaQWWuQkNBfWt1A5Icr bdW8+Wm/Kf736YQhiGH983zkg39kbM+axOIkAF1rinVYqj6/5Vfoe/CdvbXKVYuzNF0h laDRb8E2H8UkcNTMw4+biLnTyvLVOHf+weU2cp9rJf/QvYxuX3KPdroMz9CPXEMiPfEq cl55E9KzGzc+hwKTLz55zd1BQR87DQRFSYFjGXbqYucjWG+Py8xDwLFaVwq6Sk6PNgEb WDUMOl6a4jvPDuPSV2CN28AgevqG45kxH6L40DSx6opW+j+bQUKKamv2zbLQSk9VWSBU JJXQ== 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 s62si8338268pjc.75.2019.06.23.09.13.09; Sun, 23 Jun 2019 09:13:28 -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 S1726619AbfFWQIf (ORCPT + 99 others); Sun, 23 Jun 2019 12:08:35 -0400 Received: from mail.sf-mail.de ([116.202.16.50]:48679 "EHLO mail.sf-mail.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726417AbfFWQIf (ORCPT ); Sun, 23 Jun 2019 12:08:35 -0400 X-Greylist: delayed 401 seconds by postgrey-1.27 at vger.kernel.org; Sun, 23 Jun 2019 12:08:34 EDT Received: (qmail 18769 invoked from network); 23 Jun 2019 16:01:36 -0000 Received: from dslb-092-076-185-040.092.076.pools.vodafone-ip.de ([::ffff:92.76.185.40]:33320 HELO daneel.sf-tec.de) (auth=eike@sf-mail.de) by mail.sf-mail.de (Qsmtpd 0.35dev) with (DHE-RSA-AES256-GCM-SHA384 encrypted) ESMTPSA for ; Sun, 23 Jun 2019 18:01:36 +0200 From: Rolf Eike Beer To: Denis Efremov Cc: "James E.J. Bottomley" , Helge Deller , linux-parisc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH] parisc: asm: psw.h: missing header guard Date: Sun, 23 Jun 2019 18:01:41 +0200 Message-ID: <8264763.oMOxLtkXCx@daneel.sf-tec.de> In-Reply-To: <20190623150920.26422-1-efremov@linux.com> References: <20190623150920.26422-1-efremov@linux.com> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="nextPart8051854.DE1LrJNj9i"; micalg="pgp-sha1"; protocol="application/pgp-signature" Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org --nextPart8051854.DE1LrJNj9i Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Denis Efremov wrote: > The psw.h header file contains #ifndef directive of the guard, > but the complimentary #define directive is missing. The patch > adds the appropriate #define to fix the header guard. > > Signed-off-by: Denis Efremov > --- > arch/parisc/include/asm/psw.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/arch/parisc/include/asm/psw.h b/arch/parisc/include/asm/psw.h > index 76c301146c31..7a175e866ed0 100644 > --- a/arch/parisc/include/asm/psw.h > +++ b/arch/parisc/include/asm/psw.h > @@ -1,5 +1,6 @@ > /* SPDX-License-Identifier: GPL-2.0 */ > #ifndef _PARISC_PSW_H > +#define _PARISC_PSW_H > > > #define PSW_I 0x00000001 You could have removed one of the 2 empty lines then. Eike --nextPart8051854.DE1LrJNj9i Content-Type: application/pgp-signature; name="signature.asc" Content-Description: This is a digitally signed message part. Content-Transfer-Encoding: 7Bit -----BEGIN PGP SIGNATURE----- iF0EABECAB0WIQSaYVDeqwKa3fTXNeNcpIk+abn8TgUCXQ+iZQAKCRBcpIk+abn8 Tq+ZAJ0ShaFX1qk7lxyzXG0d4+P4iEcUMQCgjAcANB3MxFvxsDrfK5u76TCdHDo= =xLAY -----END PGP SIGNATURE----- --nextPart8051854.DE1LrJNj9i--