All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mihai-Valentin DUMITRU <mihai.dumitru2201@gmail.com>
To: perex@perex.cz, tiwai@suse.com, heiko@sntech.de
Cc: lgirdwood@gmail.com, broonie@kernel.org,
	alsa-devel@alsa-project.org,
	linux-arm-kernel@lists.infradead.org,
	linux-rockchip@lists.infradead.org, linux-kernel@vger.kernel.org,
	Mihai-Valentin DUMITRU <mihai.dumitru2201@stud.acs.upb.ro>,
	Mihai-Valentin DUMITRU <mihai.dumitru2201@gmail.com>
Subject: [PATCH] ASoC: rockchip: i2s: Remove unnecessary 'out of memory' message
Date: Sat, 25 Feb 2017 12:18:34 +0200	[thread overview]
Message-ID: <20170225101834.28232-1-mihai.dumitru2201@stud.acs.upb.ro> (raw)

This was reported by checkpatch.pl

Signed-off-by: Mihai-Valentin DUMITRU <mihai.dumitru2201@gmail.com>
---
 sound/soc/rockchip/rockchip_i2s.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sound/soc/rockchip/rockchip_i2s.c b/sound/soc/rockchip/rockchip_i2s.c
index 974915cb4c4f..d02a1045fc0b 100644
--- a/sound/soc/rockchip/rockchip_i2s.c
+++ b/sound/soc/rockchip/rockchip_i2s.c
@@ -551,10 +551,8 @@ static int rockchip_i2s_probe(struct platform_device *pdev)
 	int val;
 
 	i2s = devm_kzalloc(&pdev->dev, sizeof(*i2s), GFP_KERNEL);
-	if (!i2s) {
-		dev_err(&pdev->dev, "Can't allocate rk_i2s_dev\n");
+	if (!i2s)
 		return -ENOMEM;
-	}
 
 	i2s->dev = &pdev->dev;
 
-- 
2.11.1

WARNING: multiple messages have this Message-ID (diff)
From: Mihai-Valentin DUMITRU <mihai.dumitru2201@gmail.com>
To: perex@perex.cz, tiwai@suse.com, heiko@sntech.de
Cc: alsa-devel@alsa-project.org,
	Mihai-Valentin DUMITRU <mihai.dumitru2201@gmail.com>,
	lgirdwood@gmail.com, linux-kernel@vger.kernel.org,
	linux-rockchip@lists.infradead.org, broonie@kernel.org,
	Mihai-Valentin DUMITRU <mihai.dumitru2201@stud.acs.upb.ro>,
	linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ASoC: rockchip: i2s: Remove unnecessary 'out of memory' message
Date: Sat, 25 Feb 2017 12:18:34 +0200	[thread overview]
Message-ID: <20170225101834.28232-1-mihai.dumitru2201@stud.acs.upb.ro> (raw)

This was reported by checkpatch.pl

Signed-off-by: Mihai-Valentin DUMITRU <mihai.dumitru2201@gmail.com>
---
 sound/soc/rockchip/rockchip_i2s.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sound/soc/rockchip/rockchip_i2s.c b/sound/soc/rockchip/rockchip_i2s.c
index 974915cb4c4f..d02a1045fc0b 100644
--- a/sound/soc/rockchip/rockchip_i2s.c
+++ b/sound/soc/rockchip/rockchip_i2s.c
@@ -551,10 +551,8 @@ static int rockchip_i2s_probe(struct platform_device *pdev)
 	int val;
 
 	i2s = devm_kzalloc(&pdev->dev, sizeof(*i2s), GFP_KERNEL);
-	if (!i2s) {
-		dev_err(&pdev->dev, "Can't allocate rk_i2s_dev\n");
+	if (!i2s)
 		return -ENOMEM;
-	}
 
 	i2s->dev = &pdev->dev;
 
-- 
2.11.1

WARNING: multiple messages have this Message-ID (diff)
From: mihai.dumitru2201@gmail.com (Mihai-Valentin DUMITRU)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ASoC: rockchip: i2s: Remove unnecessary 'out of memory' message
Date: Sat, 25 Feb 2017 12:18:34 +0200	[thread overview]
Message-ID: <20170225101834.28232-1-mihai.dumitru2201@stud.acs.upb.ro> (raw)

This was reported by checkpatch.pl

Signed-off-by: Mihai-Valentin DUMITRU <mihai.dumitru2201@gmail.com>
---
 sound/soc/rockchip/rockchip_i2s.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sound/soc/rockchip/rockchip_i2s.c b/sound/soc/rockchip/rockchip_i2s.c
index 974915cb4c4f..d02a1045fc0b 100644
--- a/sound/soc/rockchip/rockchip_i2s.c
+++ b/sound/soc/rockchip/rockchip_i2s.c
@@ -551,10 +551,8 @@ static int rockchip_i2s_probe(struct platform_device *pdev)
 	int val;
 
 	i2s = devm_kzalloc(&pdev->dev, sizeof(*i2s), GFP_KERNEL);
-	if (!i2s) {
-		dev_err(&pdev->dev, "Can't allocate rk_i2s_dev\n");
+	if (!i2s)
 		return -ENOMEM;
-	}
 
 	i2s->dev = &pdev->dev;
 
-- 
2.11.1

             reply	other threads:[~2017-02-25 10:23 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-02-25 10:18 Mihai-Valentin DUMITRU [this message]
2017-02-25 10:18 ` [PATCH] ASoC: rockchip: i2s: Remove unnecessary 'out of memory' message Mihai-Valentin DUMITRU
2017-02-25 10:18 ` Mihai-Valentin DUMITRU
2017-02-26  8:04 ` Takashi Sakamoto
2017-02-26  8:04   ` Takashi Sakamoto
2017-08-14 16:42 ` Applied "ASoC: rockchip: Delete an error message for a failed memory allocation in rockchip_i2s_probe()" to the asoc tree Mark Brown
2017-08-14 16:42   ` Mark Brown
2017-08-14 16:42   ` Mark Brown
2017-08-14 16:42   ` Mark Brown

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170225101834.28232-1-mihai.dumitru2201@stud.acs.upb.ro \
    --to=mihai.dumitru2201@gmail.com \
    --cc=alsa-devel@alsa-project.org \
    --cc=broonie@kernel.org \
    --cc=heiko@sntech.de \
    --cc=lgirdwood@gmail.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-rockchip@lists.infradead.org \
    --cc=mihai.dumitru2201@stud.acs.upb.ro \
    --cc=perex@perex.cz \
    --cc=tiwai@suse.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.