Commit 0514cd93 authored by Ben Dooks's avatar Ben Dooks Committed by Thomas Gleixner

[MTD] Fixed signed 1bit bitfield

Signed-off-by: default avatarBen Dooks <ben@simtec.co.uk>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent 663259a4
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
* *
* (C) 2000 Red Hat. GPLd. * (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 { ...@@ -63,8 +63,8 @@ struct flchip {
flstate_t state; flstate_t state;
flstate_t oldstate; flstate_t oldstate;
int write_suspended:1; unsigned int write_suspended:1;
int erase_suspended:1; unsigned int erase_suspended:1;
unsigned long in_progress_block_addr; unsigned long in_progress_block_addr;
spinlock_t *mutex; spinlock_t *mutex;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment