mirror of
https://github.com/torvalds/linux.git
synced 2026-09-15 15:01:08 -04:00
[PATCH] make 1-bit bitfields unsigned
Keeps sparse happy. Signed-of-by: Mariusz Kozlowski <m.kozlowski@tuxland.pl> Cc: Russell King <rmk@arm.linux.org.uk> Cc: Mauro Carvalho Chehab <mchehab@infradead.org> Acked-by: Karsten Keil <kkeil@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
c67220480e
commit
940cc2df93
@@ -125,7 +125,7 @@ struct audio_stream {
|
||||
#else
|
||||
dma_regs_t *dma_regs; /* points to our DMA registers */
|
||||
#endif
|
||||
int active:1; /* we are using this stream for transfer now */
|
||||
unsigned int active:1; /* we are using this stream for transfer now */
|
||||
int period; /* current transfer period */
|
||||
int periods; /* current count of periods registerd in the DMA engine */
|
||||
int tx_spin; /* are we recoding - flag used to do DMA trans. for sync */
|
||||
|
||||
Reference in New Issue
Block a user