diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2006-06-28 07:26:58 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-28 17:59:06 -0400 |
commit | 1e866f0bf89e829736a12599bb7f476d1c378646 (patch) | |
tree | 160b564cf86e4c3781659e56d12f3d983f3ef848 | |
parent | be6990e7473fcd11becda747c24b94a478413245 (diff) |
[PATCH] oss/via: make bitfield unsigned
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>
-rw-r--r-- | sound/oss/via82cxxx_audio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/via82cxxx_audio.c b/sound/oss/via82cxxx_audio.c index 2343dedd44ae..29a6e0cff79f 100644 --- a/sound/oss/via82cxxx_audio.c +++ b/sound/oss/via82cxxx_audio.c | |||
@@ -309,7 +309,7 @@ struct via_info { | |||
309 | unsigned sixchannel: 1; /* 8233/35 with 6 channel support */ | 309 | unsigned sixchannel: 1; /* 8233/35 with 6 channel support */ |
310 | unsigned volume: 1; | 310 | unsigned volume: 1; |
311 | 311 | ||
312 | int locked_rate : 1; | 312 | unsigned locked_rate : 1; |
313 | 313 | ||
314 | int mixer_vol; /* 8233/35 volume - not yet implemented */ | 314 | int mixer_vol; /* 8233/35 volume - not yet implemented */ |
315 | 315 | ||