diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-16 14:59:10 -0700 |
---|---|---|
committer | Al Viro <viro@ftp.linux.org.uk> | 2007-10-16 14:59:10 -0700 |
commit | c3f429e3bb295586c7516f8f3f8a1a2ab38ff254 (patch) | |
tree | 72b4bdbfa308842dfcac8f2bc4d91bbf45ad5f3d /linux | |
parent | b0810ae831bd969b353b8eacf0547c554a40eb88 (diff) | |
download | mediapointer-dvb-s2-c3f429e3bb295586c7516f8f3f8a1a2ab38ff254.tar.gz mediapointer-dvb-s2-c3f429e3bb295586c7516f8f3f8a1a2ab38ff254.tar.bz2 |
Backport kernel commit 64b33619a30ff18c1535ee779572ecffcc4711d2
kernel-sync:
Date: Sun, 14 Oct 2007 18:35:20 +0000 (+0100)
long vs. unsigned long - low-hanging fruits in drivers
deal with signedness of the stuff passed to set_bit() et.al.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'linux')
-rw-r--r-- | linux/sound/pci/bt87x.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linux/sound/pci/bt87x.c b/linux/sound/pci/bt87x.c index a6e7971e3..40290e0c7 100644 --- a/linux/sound/pci/bt87x.c +++ b/linux/sound/pci/bt87x.c @@ -162,7 +162,7 @@ struct snd_bt87x { int dig_rate; spinlock_t reg_lock; - long opened; + unsigned long opened; struct snd_pcm_substream *substream; struct snd_dma_buffer dma_risc; |