Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1668067
| From | Florian Fainelli <f.fainelli@gmail.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH v2 1/4] ARM: fncpy: Rename include guards |
| Date | 2017-06-16 23:30 +0200 |
| Message-ID | <tT6Yy-5IE-11@gated-at.bofh.it> (permalink) |
| References | <tT6Yx-5IE-3@gated-at.bofh.it> |
| Organization | linux.* mail to news gateway |
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 <f.fainelli@gmail.com> --- 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 <linux/types.h> #include <linux/string.h> @@ -91,4 +91,4 @@ __result; \ }) -#endif /* !__ASM_FNCPY_H */ +#endif /* !__ASM_ARM_FNCPY_H */ -- 2.9.3
Back to linux.kernel | Previous | Next | Find similar | Unroll thread
[PATCH v2 1/4] ARM: fncpy: Rename include guards Florian Fainelli <f.fainelli@gmail.com> - 2017-06-16 23:30 +0200
csiph-web