Skip to content

Commit

Permalink
[PATCH] oss/via: make bitfield unsigned
Browse files Browse the repository at this point in the history
Make a 1-bit field unsigned like all of the others near it.
sound/oss/via82cxxx_audio.c:311:21: error: dubious one-bit signed bitfield

Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Randy Dunlap authored and Linus Torvalds committed Jun 28, 2006
1 parent be6990e commit 1e866f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/oss/via82cxxx_audio.c
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ struct via_info {
unsigned sixchannel: 1; /* 8233/35 with 6 channel support */
unsigned volume: 1;

int locked_rate : 1;
unsigned locked_rate : 1;

int mixer_vol; /* 8233/35 volume - not yet implemented */

Expand Down

0 comments on commit 1e866f0

Please sign in to comment.