From: Denis Efremov Date: Mon, 24 Jun 2019 08:51:27 +0000 (+0300) Subject: parisc: asm: psw.h: missing header guard X-Git-Tag: v5.4-rc1~635^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b3d5f311d3cfdea0b0e2373409e50423b130f847;p=platform%2Fkernel%2Flinux-rpi.git parisc: asm: psw.h: missing header guard 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 Signed-off-by: Helge Deller --- diff --git a/arch/parisc/include/asm/psw.h b/arch/parisc/include/asm/psw.h index 76c301146c31..46921ffcc407 100644 --- a/arch/parisc/include/asm/psw.h +++ b/arch/parisc/include/asm/psw.h @@ -1,6 +1,6 @@ /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _PARISC_PSW_H - +#define _PARISC_PSW_H #define PSW_I 0x00000001 #define PSW_D 0x00000002