[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1444685896-31359-1-git-send-email-linux@rasmusvillemoes.dk>
Date: Mon, 12 Oct 2015 23:38:10 +0200
From: Rasmus Villemoes <linux@...musvillemoes.dk>
To: Eduardo Valentin <eduardo.valentin@...com>
Cc: Rasmus Villemoes <linux@...musvillemoes.dk>,
linux-kernel@...r.kernel.org
Subject: [PATCH] linux/clock_cooling.h: use unique include guard
Using the same include guard as linux/cpu_cooling.h will cause build
breakage if those headers are ever used from the same TU.
Signed-off-by: Rasmus Villemoes <linux@...musvillemoes.dk>
---
include/linux/clock_cooling.h | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/include/linux/clock_cooling.h b/include/linux/clock_cooling.h
index 4d1019d56f7f..8cee7b281e96 100644
--- a/include/linux/clock_cooling.h
+++ b/include/linux/clock_cooling.h
@@ -20,8 +20,8 @@
* General Public License for more details.
*/
-#ifndef __CPU_COOLING_H__
-#define __CPU_COOLING_H__
+#ifndef __CLOCK_COOLING_H__
+#define __CLOCK_COOLING_H__
#include <linux/of.h>
#include <linux/thermal.h>
@@ -62,4 +62,4 @@ unsigned long clock_cooling_get_level(struct thermal_cooling_device *cdev,
}
#endif /* CONFIG_CLOCK_THERMAL */
-#endif /* __CPU_COOLING_H__ */
+#endif /* __CLOCK_COOLING_H__ */
--
2.1.3
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists