Commit 6b9ea421 authored by Russell King's avatar Russell King Committed by Russell King

[MFD] Fix "bious one-bit signed bitfield" errors

ucb1x00-ts declared a couple of one-bit 'int' bitfields.
Make them unsigned.
Signed-off-by: default avatarRussell King <rmk+kernel@arm.linux.org.uk>
parent 87e807b6
...@@ -48,8 +48,8 @@ struct ucb1x00_ts { ...@@ -48,8 +48,8 @@ struct ucb1x00_ts {
u16 x_res; u16 x_res;
u16 y_res; u16 y_res;
int restart:1; unsigned int restart:1;
int adcsync:1; unsigned int adcsync:1;
}; };
static int adcsync; static int adcsync;
......
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