Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752360AbdFQAH4 (ORCPT ); Fri, 16 Jun 2017 20:07:56 -0400 Received: from mail-qk0-f196.google.com ([209.85.220.196]:34553 "EHLO mail-qk0-f196.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752067AbdFQAHw (ORCPT ); Fri, 16 Jun 2017 20:07:52 -0400 From: Florian Fainelli To: linux-arm-kernel@lists.infradead.org Cc: bcm-kernel-feedback-list@broadcom.com, Florian Fainelli , Russell King , Catalin Marinas , Will Deacon , Arnd Bergmann , Greg Kroah-Hartman , linux-kernel@vger.kernel.org (open list), linux-arch@vger.kernel.org (open list:GENERIC INCLUDE/ASM HEADER FILES), Dave Gerlach , Tony Lindgren , Keerthy J , Alexandre Belloni , linux-omap@vger.kernel.org, Shawn Guo Subject: [PATCH v3 1/4] ARM: fncpy: Rename include guards Date: Fri, 16 Jun 2017 17:07:41 -0700 Message-Id: <20170617000744.22158-2-f.fainelli@gmail.com> X-Mailer: git-send-email 2.9.3 In-Reply-To: <20170617000744.22158-1-f.fainelli@gmail.com> References: <20170617000744.22158-1-f.fainelli@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 919 Lines: 33 In preparation for allowing a generic fncpy() implementation to live under include/asm-generic/fncpy.h, rename the current include guards to be __ASM_ARM_FNCPY_H, this also makes the header file more consistent with other headers in the same directory. Signed-off-by: Florian Fainelli --- arch/arm/include/asm/fncpy.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/include/asm/fncpy.h b/arch/arm/include/asm/fncpy.h index de5354746924..86a8fc14cde9 100644 --- a/arch/arm/include/asm/fncpy.h +++ b/arch/arm/include/asm/fncpy.h @@ -53,8 +53,8 @@ * in the file where f is defined. */ -#ifndef __ASM_FNCPY_H -#define __ASM_FNCPY_H +#ifndef __ASM_ARM_FNCPY_H +#define __ASM_ARM_FNCPY_H #include #include @@ -91,4 +91,4 @@ __result; \ }) -#endif /* !__ASM_FNCPY_H */ +#endif /* !__ASM_ARM_FNCPY_H */ -- 2.9.3