diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2007-10-14 14:35:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-14 15:41:52 -0400 |
commit | b4482a4b2e2ff5ed96d8d16d72e83e75064062c5 (patch) | |
tree | 675b5f0a80d720c63db138d5395d63cee6c74969 /sound/usb | |
parent | 64a6f9500d8e8a8e1b1adc2120e56cc88df5727f (diff) |
more trivial signedness fixes in drivers
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'sound/usb')
-rw-r--r-- | sound/usb/usbaudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/usb/usbaudio.c b/sound/usb/usbaudio.c index 7bd5852fcc0d..ac5666f4c6d5 100644 --- a/sound/usb/usbaudio.c +++ b/sound/usb/usbaudio.c | |||
@@ -2876,7 +2876,7 @@ static int create_fixed_stream_quirk(struct snd_usb_audio *chip, | |||
2876 | struct audioformat *fp; | 2876 | struct audioformat *fp; |
2877 | struct usb_host_interface *alts; | 2877 | struct usb_host_interface *alts; |
2878 | int stream, err; | 2878 | int stream, err; |
2879 | int *rate_table = NULL; | 2879 | unsigned *rate_table = NULL; |
2880 | 2880 | ||
2881 | fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL); | 2881 | fp = kmemdup(quirk->data, sizeof(*fp), GFP_KERNEL); |
2882 | if (! fp) { | 2882 | if (! fp) { |