summaryrefslogtreecommitdiff
path: root/sound/pci/lx6464es/lx6464es.h
diff options
context:
space:
mode:
authorTim Blechmann <tim@klingt.org>2010-10-31 18:46:19 (GMT)
committerTakashi Iwai <tiwai@suse.de>2010-11-01 09:28:35 (GMT)
commitf7467452291f7c9e5e1271e8c8e45b77f34b1257 (patch)
treedb99575320a7a25d8165fd45f43001c397cab83a /sound/pci/lx6464es/lx6464es.h
parentbb617ee3f82ba94072c8b08043d9166bbfe397a2 (diff)
downloadlinux-fsl-qoriq-f7467452291f7c9e5e1271e8c8e45b77f34b1257.tar.xz
ALSA: lx6464es - make 1 bit signed bitfield unsigned
converts a 1 bit signed bitfield to an unsigned. Reported-by: Dr. David Alan Gilbert <linux@treblig.org> Signed-off-by: Tim Blechmann <tim@klingt.org> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/lx6464es/lx6464es.h')
-rw-r--r--sound/pci/lx6464es/lx6464es.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/lx6464es/lx6464es.h b/sound/pci/lx6464es/lx6464es.h
index 51afc04..aea621e 100644
--- a/sound/pci/lx6464es/lx6464es.h
+++ b/sound/pci/lx6464es/lx6464es.h
@@ -60,7 +60,7 @@ struct lx_stream {
snd_pcm_uframes_t frame_pos;
enum lx_stream_status status; /* free, open, running, draining
* pause */
- int is_capture:1;
+ unsigned int is_capture:1;
};