From: Lucas De Marchi Date: Tue, 17 Mar 2015 12:21:42 +0000 (-0300) Subject: kdbus: fix header guard name X-Git-Tag: submit/tizen/20160405.082219~24 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=21da24ee6582931a7d54e49927fe4a0824ed4d89;p=platform%2Fkernel%2Flinux-exynos.git kdbus: fix header guard name UAPI headers have a _UAPI_ as prefix, which is removed during headers_install. If it's put as a suffix it will not be removed and will be the only header with UAPI in the header guard macro. Change-Id: I865bf183844d1df797ec99a3fffc95e4229a2504 Signed-off-by: Lucas De Marchi Reviewed-by: David Herrmann Signed-off-by: Greg Kroah-Hartman Signed-off-by: Paul Osmialowski --- diff --git a/include/uapi/linux/kdbus.h b/include/uapi/linux/kdbus.h index fc1d77dd7c93..2fe0a1c5056c 100644 --- a/include/uapi/linux/kdbus.h +++ b/include/uapi/linux/kdbus.h @@ -5,8 +5,8 @@ * your option) any later version. */ -#ifndef _KDBUS_UAPI_H_ -#define _KDBUS_UAPI_H_ +#ifndef _UAPI_KDBUS_H_ +#define _UAPI_KDBUS_H_ #include #include @@ -976,4 +976,4 @@ enum kdbus_ioctl_type { struct kdbus_cmd_match), }; -#endif /* _KDBUS_UAPI_H_ */ +#endif /* _UAPI_KDBUS_H_ */