projects
/
GitHub
/
LineageOS
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c38774d
)
ALSA: mixart: Delete an error message for a failed memory allocation in snd_mixart_cr...
author
Markus Elfring
<elfring@users.sourceforge.net>
Sat, 12 Aug 2017 16:45:42 +0000
(18:45 +0200)
committer
Takashi Iwai
<tiwai@suse.de>
Sat, 12 Aug 2017 21:33:20 +0000
(23:33 +0200)
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 <elfring@users.sourceforge.net>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/mixart/mixart.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/pci/mixart/mixart.c
b/sound/pci/mixart/mixart.c
index aca3b34b1bfea07bf9569dad74416a056193df19..a74f1ad7e7b85900583b37e050d890360b869546 100644
(file)
--- a/
sound/pci/mixart/mixart.c
+++ b/
sound/pci/mixart/mixart.c
@@
-1052,10
+1052,8
@@
static int snd_mixart_create(struct mixart_mgr *mgr, struct snd_card *card, int
};
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;