diff options
author | Thomas Gleixner <tglx@mtd.linutronix.de> | 2005-11-07 00:14:42 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@mtd.linutronix.de> | 2005-11-07 00:14:42 +0100 |
commit | 15fdc52f35b853e3fa550087987b5ee4ffbd199b (patch) | |
tree | 000d8934d1e68cbee764d402de00a69a34ff93ea /drivers/mtd/mtdblock.c | |
parent | 9090ed0b82f817bde471bdbb2e73278ab75f5fd3 (diff) |
[MTD] Tidy up Tims include cleanup
While we are at it, reorder the includes and
remove the silly /* TASK */ comment
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'drivers/mtd/mtdblock.c')
-rw-r--r-- | drivers/mtd/mtdblock.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/drivers/mtd/mtdblock.c b/drivers/mtd/mtdblock.c index 400dd9c89883..bee8aba9e5bb 100644 --- a/drivers/mtd/mtdblock.c +++ b/drivers/mtd/mtdblock.c @@ -1,21 +1,22 @@ /* * Direct MTD block device access * - * $Id: mtdblock.c,v 1.66 2004/11/25 13:52:52 joern Exp $ + * $Id: mtdblock.c,v 1.67 2005/11/06 10:04:37 gleixner Exp $ * * (C) 2000-2003 Nicolas Pitre <nico@cam.org> * (C) 1999-2003 David Woodhouse <dwmw2@infradead.org> */ #include <linux/config.h> -#include <linux/types.h> -#include <linux/module.h> -#include <linux/kernel.h> #include <linux/fs.h> #include <linux/init.h> +#include <linux/kernel.h> +#include <linux/module.h> +#include <linux/sched.h> #include <linux/slab.h> +#include <linux/types.h> #include <linux/vmalloc.h> -#include <linux/sched.h> /* TASK_* */ + #include <linux/mtd/mtd.h> #include <linux/mtd/blktrans.h> |