Skip to content
Snippets Groups Projects
Commit 115dc292 authored by Florian Fainelli's avatar Florian Fainelli
Browse files

fix lzo decompressor build failure on 2.6.35


The patch fixes the build failure in Linux 2.6.35.7.
Other versions may have the same issue, but I haven't test it.

Signed-off-by: default avatarRamax Lo <ramaxlo@gmail.com>

SVN-Revision: 23593
parent 1ecedb1e
No related branches found
No related tags found
No related merge requests found
Index: linux-2.6.35.7/include/linux/decompress/unlzo_mm.h
===================================================================
--- /dev/null 1970-01-01 00:00:00.000000000 +0000
+++ linux-2.6.35.7/include/linux/decompress/unlzo_mm.h 2010-10-23 09:32:04.000000000 +0800
@@ -0,0 +1,10 @@
+#ifndef UNLZO_MM_H
+#define UNLZO_MM_H
+
+#ifdef STATIC
+#define INIT
+#else
+#define INIT __init
+#endif
+
+#endif
Index: linux-2.6.35.7/lib/decompress_unlzo.c
===================================================================
--- linux-2.6.35.7.orig/lib/decompress_unlzo.c 2010-10-23 09:29:09.000000000 +0800
+++ linux-2.6.35.7/lib/decompress_unlzo.c 2010-10-23 09:32:53.000000000 +0800
@@ -39,6 +39,7 @@
#include <linux/types.h>
#include <linux/lzo.h>
+#include <linux/decompress/unlzo_mm.h>
#include <linux/decompress/mm.h>
#include <linux/compiler.h>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment