Skip to content

Commit

Permalink
[MTD] Fixed signed 1bit bitfield
Browse files Browse the repository at this point in the history
Signed-off-by: Ben Dooks <ben@simtec.co.uk>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
  • Loading branch information
Ben Dooks authored and Thomas Gleixner committed May 23, 2005
1 parent 663259a commit 0514cd9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions include/linux/mtd/flashchip.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 $
*
*/

Expand Down Expand Up @@ -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;
Expand Down

0 comments on commit 0514cd9

Please sign in to comment.