diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2005-05-20 15:30:09 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@mtd.linutronix.de> | 2005-05-23 07:49:14 -0400 |
commit | c84441c47d21d9291e780cdb5686e927dcd6f227 (patch) | |
tree | 6f429781c82b9ba21ce8210313407d0771b1d53b | |
parent | e2d48b1a98bb5da8d6998ca4db0b20fa46938a11 (diff) |
[JFFS2] Fix crosscompile
Include sched.h instead of asm/semaphore.h to make it compile everywhere.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r-- | fs/jffs2/compr_zlib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/jffs2/compr_zlib.c b/fs/jffs2/compr_zlib.c index 078a30e406b5..83f7e0788fd0 100644 --- a/fs/jffs2/compr_zlib.c +++ b/fs/jffs2/compr_zlib.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * | 7 | * |
8 | * For licensing information, see the file 'LICENCE' in this directory. | 8 | * For licensing information, see the file 'LICENCE' in this directory. |
9 | * | 9 | * |
10 | * $Id: compr_zlib.c,v 1.29 2004/11/16 20:36:11 dwmw2 Exp $ | 10 | * $Id: compr_zlib.c,v 1.31 2005/05/20 19:30:06 gleixner Exp $ |
11 | * | 11 | * |
12 | */ | 12 | */ |
13 | 13 | ||
@@ -17,10 +17,10 @@ | |||
17 | 17 | ||
18 | #include <linux/config.h> | 18 | #include <linux/config.h> |
19 | #include <linux/kernel.h> | 19 | #include <linux/kernel.h> |
20 | #include <linux/sched.h> | ||
20 | #include <linux/slab.h> | 21 | #include <linux/slab.h> |
21 | #include <linux/zlib.h> | 22 | #include <linux/zlib.h> |
22 | #include <linux/zutil.h> | 23 | #include <linux/zutil.h> |
23 | #include <asm/semaphore.h> | ||
24 | #include "nodelist.h" | 24 | #include "nodelist.h" |
25 | #include "compr.h" | 25 | #include "compr.h" |
26 | 26 | ||