Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1588123 > unrolled thread
| Started by | Mihai Burduselu <michelcatalin@gmail.com> |
|---|---|
| First post | 2017-02-25 12:10 +0100 |
| Last post | 2017-03-07 22:10 +0100 |
| Articles | 4 — 4 participants |
Back to article view | Back to linux.kernel
[PATCH] ASoC: dwc: remove 'out of memory' message Mihai Burduselu <michelcatalin@gmail.com> - 2017-02-25 12:10 +0100
Re: [PATCH] ASoC: dwc: remove 'out of memory' message Takashi Sakamoto <o-takashi@sakamocchi.jp> - 2017-02-26 09:10 +0100
Re: [PATCH] ASoC: dwc: remove 'out of memory' message Takashi Iwai <tiwai@suse.de> - 2017-02-28 16:40 +0100
Re: [PATCH] ASoC: dwc: remove 'out of memory' message Mark Brown <broonie@kernel.org> - 2017-03-07 22:10 +0100
| From | Mihai Burduselu <michelcatalin@gmail.com> |
|---|---|
| Date | 2017-02-25 12:10 +0100 |
| Subject | [PATCH] ASoC: dwc: remove 'out of memory' message |
| Message-ID | <teIoF-6UJ-7@gated-at.bofh.it> |
Reported by checkpatch.pl
Signed-off-by: Mihai Burduselu <michelcatalin@gmail.com>
---
sound/soc/dwc/designware_i2s.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/sound/soc/dwc/designware_i2s.c b/sound/soc/dwc/designware_i2s.c
index 9c46e4112026..6479768cc6a1 100644
--- a/sound/soc/dwc/designware_i2s.c
+++ b/sound/soc/dwc/designware_i2s.c
@@ -611,10 +611,8 @@ static int dw_i2s_probe(struct platform_device *pdev)
const char *clk_id;
dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
- if (!dev) {
- dev_warn(&pdev->dev, "kzalloc fail\n");
+ if (!dev)
return -ENOMEM;
- }
dw_i2s_dai = devm_kzalloc(&pdev->dev, sizeof(*dw_i2s_dai), GFP_KERNEL);
if (!dw_i2s_dai)
--
2.11.0
[toc] | [next] | [standalone]
| From | Takashi Sakamoto <o-takashi@sakamocchi.jp> |
|---|---|
| Date | 2017-02-26 09:10 +0100 |
| Message-ID | <tf241-3YV-5@gated-at.bofh.it> |
| In reply to | #1588123 |
Hi,
On Feb 25 2017 20:03, Mihai Burduselu wrote:
> Reported by checkpatch.pl
> Signed-off-by: Mihai Burduselu <michelcatalin@gmail.com>
> ---
> sound/soc/dwc/designware_i2s.c | 4 +---
> 1 file changed, 1 insertion(+), 3 deletions(-)
>
> diff --git a/sound/soc/dwc/designware_i2s.c b/sound/soc/dwc/designware_i2s.c
> index 9c46e4112026..6479768cc6a1 100644
> --- a/sound/soc/dwc/designware_i2s.c
> +++ b/sound/soc/dwc/designware_i2s.c
> @@ -611,10 +611,8 @@ static int dw_i2s_probe(struct platform_device *pdev)
> const char *clk_id;
>
> dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
> - if (!dev) {
> - dev_warn(&pdev->dev, "kzalloc fail\n");
> + if (!dev)
The line for 'dev_warn()' should be kept.
> return -ENOMEM;
> - }
>
> dw_i2s_dai = devm_kzalloc(&pdev->dev, sizeof(*dw_i2s_dai), GFP_KERNEL);
> if (!dw_i2s_dai)
Regards
Takashi Sakamoto
[toc] | [prev] | [next] | [standalone]
| From | Takashi Iwai <tiwai@suse.de> |
|---|---|
| Date | 2017-02-28 16:40 +0100 |
| Message-ID | <tfS2C-6kf-23@gated-at.bofh.it> |
| In reply to | #1588298 |
On Sun, 26 Feb 2017 09:03:22 +0100,
Takashi Sakamoto wrote:
>
> Hi,
>
> On Feb 25 2017 20:03, Mihai Burduselu wrote:
> > Reported by checkpatch.pl
> > Signed-off-by: Mihai Burduselu <michelcatalin@gmail.com>
> > ---
> > sound/soc/dwc/designware_i2s.c | 4 +---
> > 1 file changed, 1 insertion(+), 3 deletions(-)
> >
> > diff --git a/sound/soc/dwc/designware_i2s.c b/sound/soc/dwc/designware_i2s.c
> > index 9c46e4112026..6479768cc6a1 100644
> > --- a/sound/soc/dwc/designware_i2s.c
> > +++ b/sound/soc/dwc/designware_i2s.c
> > @@ -611,10 +611,8 @@ static int dw_i2s_probe(struct platform_device *pdev)
> > const char *clk_id;
> >
> > dev = devm_kzalloc(&pdev->dev, sizeof(*dev), GFP_KERNEL);
> > - if (!dev) {
> > - dev_warn(&pdev->dev, "kzalloc fail\n");
> > + if (!dev)
>
> The line for 'dev_warn()' should be kept.
In general, people regard it superfluous since kmalloc() itself
already gives a kernel warning at an allocation error. So removing
the message is OK in that sense.
However, the problem of this (and lots of other) patch is that it
doesn't give proper information. Instead, in a single line, it merely
declares checkpatch.pl as a bible. Very helpful, eh?
So, please reconsider the changelog when you submit this kind of
patches.
thanks,
Takashi
[toc] | [prev] | [next] | [standalone]
| From | Mark Brown <broonie@kernel.org> |
|---|---|
| Date | 2017-03-07 22:10 +0100 |
| Message-ID | <tiuwO-4QQ-21@gated-at.bofh.it> |
| In reply to | #1589569 |
[Multipart message — attachments visible in raw view] — view raw
On Tue, Feb 28, 2017 at 04:19:41PM +0100, Takashi Iwai wrote: > However, the problem of this (and lots of other) patch is that it > doesn't give proper information. Instead, in a single line, it merely > declares checkpatch.pl as a bible. Very helpful, eh? > So, please reconsider the changelog when you submit this kind of > patches. Yeah, it's a *huge* set of patches with poor changelogs and very minor benefits which is more work to digest than it seems useful to.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web