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:
dee4989
)
ALSA: pcxhr: Delete an error message for a failed memory allocation in pcxhr_create()
author
Markus Elfring
<elfring@users.sourceforge.net>
Sat, 12 Aug 2017 16:14:54 +0000
(18:14 +0200)
committer
Takashi Iwai
<tiwai@suse.de>
Sat, 12 Aug 2017 21:32:46 +0000
(23:32 +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/pcxhr/pcxhr.c
patch
|
blob
|
blame
|
history
diff --git
a/sound/pci/pcxhr/pcxhr.c
b/sound/pci/pcxhr/pcxhr.c
index e6f9aa67cc6f662bbd29c3d8d9b26109c95172b3..f9ae72f28ddc4f5979bf532259933f146f54cfd4 100644
(file)
--- 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;