LinuxPPC-Dev Archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] ALSA: aoa: remove unnecessary oom message
@ 2021-06-17 10:27 Zhen Lei
  2021-06-17 15:38 ` Takashi Iwai
  0 siblings, 1 reply; 2+ messages in thread
From: Zhen Lei @ 2021-06-17 10:27 UTC (permalink / raw
  To: Johannes Berg, Jaroslav Kysela, Takashi Iwai, linuxppc-dev,
	alsa-devel
  Cc: Zhen Lei

Fixes scripts/checkpatch.pl warning:
WARNING: Possible unnecessary 'out of memory' message

Remove it can help us save a bit of memory.

Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>
---
 sound/aoa/soundbus/i2sbus/pcm.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sound/aoa/soundbus/i2sbus/pcm.c b/sound/aoa/soundbus/i2sbus/pcm.c
index 1c8e8131a716..a9e502a6cdeb 100644
--- a/sound/aoa/soundbus/i2sbus/pcm.c
+++ b/sound/aoa/soundbus/i2sbus/pcm.c
@@ -918,10 +918,8 @@ i2sbus_attach_codec(struct soundbus_dev *dev, struct snd_card *card,
 	}
 
 	cii = kzalloc(sizeof(struct codec_info_item), GFP_KERNEL);
-	if (!cii) {
-		printk(KERN_DEBUG "i2sbus: failed to allocate cii\n");
+	if (!cii)
 		return -ENOMEM;
-	}
 
 	/* use the private data to point to the codec info */
 	cii->sdev = soundbus_dev_get(dev);
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 1/1] ALSA: aoa: remove unnecessary oom message
  2021-06-17 10:27 [PATCH 1/1] ALSA: aoa: remove unnecessary oom message Zhen Lei
@ 2021-06-17 15:38 ` Takashi Iwai
  0 siblings, 0 replies; 2+ messages in thread
From: Takashi Iwai @ 2021-06-17 15:38 UTC (permalink / raw
  To: Zhen Lei
  Cc: Johannes Berg, linuxppc-dev, Takashi Iwai, alsa-devel,
	Jaroslav Kysela

On Thu, 17 Jun 2021 12:27:45 +0200,
Zhen Lei wrote:
> 
> Fixes scripts/checkpatch.pl warning:
> WARNING: Possible unnecessary 'out of memory' message
> 
> Remove it can help us save a bit of memory.
> 
> Signed-off-by: Zhen Lei <thunder.leizhen@huawei.com>

Thanks, applied.


Takashi

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2021-06-17 15:48 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-06-17 10:27 [PATCH 1/1] ALSA: aoa: remove unnecessary oom message Zhen Lei
2021-06-17 15:38 ` Takashi Iwai

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).