Initial commit from HTC m7ul-3.4.10-jb-crc-ddcfb8c
diff --git a/include/linux/stringify.h b/include/linux/stringify.h
new file mode 100644
index 0000000..5c5a132
--- /dev/null
+++ b/include/linux/stringify.h
@@ -0,0 +1,8 @@
+#ifndef __LINUX_STRINGIFY_H
+#define __LINUX_STRINGIFY_H
+
+
+#define __stringify_1(x...)	#x
+#define __stringify(x...)	__stringify_1(x)
+
+#endif