From: David Howells Date: Tue, 13 Dec 2011 09:26:45 +0000 (+0000) Subject: UAPI: Guard linux/pmu.h X-Git-Tag: upstream/snapshot3+hdmi~8324^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6c9f2ef9b5b3a84952ba2f99472f82e3398ac3e9;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git UAPI: Guard linux/pmu.h Place reinclusion guards on linux/pmu.h otherwise the UAPI splitter won't insert the #include to include the UAPI header from the kernel header. Signed-off-by: David Howells --- diff --git a/include/linux/pmu.h b/include/linux/pmu.h index cafe98d..84e6a55 100644 --- a/include/linux/pmu.h +++ b/include/linux/pmu.h @@ -6,6 +6,8 @@ * Copyright (C) 1998 Paul Mackerras. */ +#ifndef _LINUX_PMU_H +#define _LINUX_PMU_H #define PMU_DRIVER_VERSION 2 @@ -207,3 +209,5 @@ extern int pmu_sys_suspended; #endif #endif /* __KERNEL__ */ + +#endif /* _LINUX_PMU_H */