From patchwork Sun Jun 23 15:09:20 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Denis Efremov (Oracle)" X-Patchwork-Id: 11011707 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork-2.web.codeaurora.org (Postfix) with ESMTP id 653B913AF for ; Sun, 23 Jun 2019 15:10:12 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 469AF28A93 for ; Sun, 23 Jun 2019 15:10:12 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 3400D28ACD; Sun, 23 Jun 2019 15:10:12 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-7.9 required=2.0 tests=BAYES_00,MAILING_LIST_MULTI, RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id E661628A93 for ; Sun, 23 Jun 2019 15:10:10 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726656AbfFWPJu (ORCPT ); Sun, 23 Jun 2019 11:09:50 -0400 Received: from mail-pf1-f195.google.com ([209.85.210.195]:39361 "EHLO mail-pf1-f195.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726429AbfFWPJt (ORCPT ); Sun, 23 Jun 2019 11:09:49 -0400 Received: by mail-pf1-f195.google.com with SMTP id j2so6049983pfe.6; Sun, 23 Jun 2019 08:09:49 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=66SWU+ctYxtZn/h5UpypgxOW/HLCO9TF1ChCXAD7X4k=; b=AhVFWJV7ntugcnosGpS2QmPVv4xC49jzuauRAOtdltLkszkmWe6yT1iVQ/jD1zQT8y Vxgf/U9Cibla35TR/T62L/vmY38ajmBVBDyybD90kjgyV9OY4ClDOAJdyY+mXWsfEcdW mF8mJQm04WvDMBPgQqcoiKhdmkzsCB2PldaFHAta0sn13D7jxnG9Zr5Tg7QzV1keA5ru BfI7GhaqPp/HAmZ85IJuUhlFlgsPL0NlwHwqsaJqQJrS6sF87v/DWDyO3LESapOxLDnU /6/h/5Au1o0GnOESpQsa+sHnRbNSNdorAp/inTJhpcfvtytmuyVTHdi+uDZQkMFZKWbW 6b5Q== X-Gm-Message-State: APjAAAXURz5KVz2/3U+Ed1P8GFOaCfVgUFX12pIqrF0XciDROZsELxr3 pSCJzuwNYZJunkX6Gy0pDKc= X-Google-Smtp-Source: APXvYqwB2kg9O2RBgY8RpYRzutcwp5sLqRHDdr3hxYqbl2x0R1h6X429vICDzpeFjZy8+rIxtN4VPg== X-Received: by 2002:a63:f346:: with SMTP id t6mr17447310pgj.203.1561302589296; Sun, 23 Jun 2019 08:09:49 -0700 (PDT) Received: from localhost.localdomain (broadband-188-32-48-208.ip.moscow.rt.ru. [188.32.48.208]) by smtp.googlemail.com with ESMTPSA id s24sm8674255pfh.133.2019.06.23.08.09.45 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Sun, 23 Jun 2019 08:09:48 -0700 (PDT) From: Denis Efremov To: "James E.J. Bottomley" Cc: Denis Efremov , Helge Deller , linux-parisc@vger.kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH] parisc: asm: psw.h: missing header guard Date: Sun, 23 Jun 2019 18:09:20 +0300 Message-Id: <20190623150920.26422-1-efremov@linux.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Sender: linux-parisc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-parisc@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP 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