Skip to content

Commit

Permalink
[PATCH] arch/i386/kernel/apm.c: fix sparse warnings
Browse files Browse the repository at this point in the history
Signed-off-by: Alexey Dobriyan <adobriyan@mail.ru>
Signed-off-by: Domen Puncer <domen@coderock.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Domen Puncer authored and Linus Torvalds committed Jun 25, 2005
1 parent 3f3ae34 commit 77617bd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions arch/i386/kernel/apm.c
Original file line number Diff line number Diff line change
Expand Up @@ -346,10 +346,10 @@ extern int (*console_blank_hook)(int);
struct apm_user {
int magic;
struct apm_user * next;
int suser: 1;
int writer: 1;
int reader: 1;
int suspend_wait: 1;
unsigned int suser: 1;
unsigned int writer: 1;
unsigned int reader: 1;
unsigned int suspend_wait: 1;
int suspend_result;
int suspends_pending;
int standbys_pending;
Expand Down

0 comments on commit 77617bd

Please sign in to comment.