aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorBen Dooks <ben@simtec.co.uk>2005-03-14 18:27:18 +0000
committerThomas Gleixner <tglx@mtd.linutronix.de>2005-05-23 12:51:30 +0200
commit0514cd938009de1d6b3239d98c3cf2a67b620103 (patch)
tree55dc0bb71d8df2cc63625c9905bd7867314ada73 /include
parent[MTD] phram: Allow short reads. (diff)
downloadlinux-dev-0514cd938009de1d6b3239d98c3cf2a67b620103.tar.xz
linux-dev-0514cd938009de1d6b3239d98c3cf2a67b620103.zip
[MTD] Fixed signed 1bit bitfield
Signed-off-by: Ben Dooks <ben@simtec.co.uk> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/linux/mtd/flashchip.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/linux/mtd/flashchip.h b/include/linux/mtd/flashchip.h
index e778a1ab23c4..675776fa3e27 100644
--- a/include/linux/mtd/flashchip.h
+++ b/include/linux/mtd/flashchip.h
@@ -6,7 +6,7 @@
*
* (C) 2000 Red Hat. GPLd.
*
- * $Id: flashchip.h,v 1.16 2005/02/08 17:11:15 nico Exp $
+ * $Id: flashchip.h,v 1.17 2005/03/14 18:27:15 bjd Exp $
*
*/
@@ -63,8 +63,8 @@ struct flchip {
flstate_t state;
flstate_t oldstate;
- int write_suspended:1;
- int erase_suspended:1;
+ unsigned int write_suspended:1;
+ unsigned int erase_suspended:1;
unsigned long in_progress_block_addr;
spinlock_t *mutex;