Initial commit from HTC m7ul-3.4.10-jb-crc-ddcfb8c
diff --git a/include/linux/decompress/generic.h b/include/linux/decompress/generic.h
new file mode 100644
index 0000000..ace7518
--- /dev/null
+++ b/include/linux/decompress/generic.h
@@ -0,0 +1,16 @@
+#ifndef DECOMPRESS_GENERIC_H
+#define DECOMPRESS_GENERIC_H
+
+typedef int (*decompress_fn) (unsigned char *inbuf, int len,
+			      int(*fill)(void*, unsigned int),
+			      int(*flush)(void*, unsigned int),
+			      unsigned char *outbuf,
+			      int *posp,
+			      void(*error)(char *x));
+
+
+
+decompress_fn decompress_method(const unsigned char *inbuf, int len,
+				const char **name);
+
+#endif