From: Markus Elfring Date: Sat, 12 Aug 2017 16:14:54 +0000 (+0200) Subject: ALSA: pcxhr: Delete an error message for a failed memory allocation in pcxhr_create() X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=c38774d830aef6710676e7e5797d979c2bbb45ba;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git ALSA: pcxhr: Delete an error message for a failed memory allocation in pcxhr_create() Omit an extra message for a memory allocation failure in this function. This issue was detected by using the Coccinelle software. Signed-off-by: Markus Elfring Signed-off-by: Takashi Iwai --- diff --git a/sound/pci/pcxhr/pcxhr.c b/sound/pci/pcxhr/pcxhr.c index e6f9aa67cc6f..f9ae72f28ddc 100644 --- a/sound/pci/pcxhr/pcxhr.c +++ b/sound/pci/pcxhr/pcxhr.c @@ -1215,10 +1215,8 @@ static int pcxhr_create(struct pcxhr_mgr *mgr, }; chip = kzalloc(sizeof(*chip), GFP_KERNEL); - if (! chip) { - dev_err(card->dev, "cannot allocate chip\n"); + if (!chip) return -ENOMEM; - } chip->card = card; chip->chip_idx = idx;