summaryrefslogtreecommitdiff
path: root/sound/usb
diff options
context:
space:
mode:
authorShawn Lin <shawn.lin@rock-chips.com>2016-08-21 10:17:36 +0800
committerTakashi Iwai <tiwai@suse.de>2016-08-22 11:41:02 +0200
commit1bc00f32b87c24f1a981e6dcf3f2174babee93ad (patch)
treec4be0dcbc6dd6ba4691c6549df5676ba64f94a84 /sound/usb
parent36e1ac3cf880fb9dbb528c41ebde567ca17d4a84 (diff)
ALSA: usb-audio: rmove print for failure of kmalloc
kmalloc already print similar error once failing to alloc enough memory, so let's remove this dump here. Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb')
-rw-r--r--sound/usb/format.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sound/usb/format.c b/sound/usb/format.c
index 789d19ec035d..2c44386e5569 100644
--- a/sound/usb/format.c
+++ b/sound/usb/format.c
@@ -176,10 +176,8 @@ static int parse_audio_format_rates_v1(struct snd_usb_audio *chip, struct audiof
int r, idx;
fp->rate_table = kmalloc(sizeof(int) * nr_rates, GFP_KERNEL);
- if (fp->rate_table == NULL) {
- usb_audio_err(chip, "cannot malloc\n");
+ if (fp->rate_table == NULL)
return -ENOMEM;
- }
fp->nr_rates = 0;
fp->rate_min = fp->rate_max = 0;