Commit c280c407 authored by Russell King's avatar Russell King

[ARM] Fix ARM APM emulation sparse errors

arch/arm/kernel/apm.c:57:16: warning: dubious one-bit signed bitfield
arch/arm/kernel/apm.c:58:17: warning: dubious one-bit signed bitfield
arch/arm/kernel/apm.c:59:17: warning: dubious one-bit signed bitfield
arch/arm/kernel/apm.c:60:23: warning: dubious one-bit signed bitfield
parent 8a690d16
...@@ -54,10 +54,10 @@ ...@@ -54,10 +54,10 @@
struct apm_user { struct apm_user {
struct list_head list; struct list_head list;
int suser: 1; unsigned int suser: 1;
int writer: 1; unsigned int writer: 1;
int reader: 1; unsigned int reader: 1;
int suspend_wait: 1; unsigned int suspend_wait: 1;
int suspend_result; int suspend_result;
int suspends_pending; int suspends_pending;
......
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