forked from Minki/linux
[MFD] Fix "bious one-bit signed bitfield" errors
ucb1x00-ts declared a couple of one-bit 'int' bitfields. Make them unsigned. Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
parent
87e807b6c4
commit
6b9ea4213e
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user