mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Takashi Iwai <tiwai@suse.de>
To: "Hannes Eder" <hannes@hanneseder.net>
Cc: "Jaroslav Kysela" <perex@perex.cz>,
	kernel-janitors@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] sound: Fix warnings relating to ignored return value in snd_card_register
Date: Tue, 18 Nov 2008 17:14:43 +0100	[thread overview]
Message-ID: <s5hej19dn9o.wl%tiwai@suse.de> (raw)
In-Reply-To: <154e089b0811180759x4db4ba61k467fa2275710938f@mail.gmail.com>

At Tue, 18 Nov 2008 16:59:03 +0100,
Hannes Eder wrote:
> 
> Do not ignore the return of 'device_create_file' in
> 'snd_card_register' and thereby fixing the following warnings:
> 
> sound/core/init.c: In function 'snd_card_register':
> sound/core/init.c:640: warning: ignoring return value of
> 'device_create_file', declared with attribute warn_unused_result
> sound/core/init.c:641: warning: ignoring return value of
> 'device_create_file', declared with attribute warn_unused_result

The changes look good, but please run checkpatch.pl to your patch and
fix the coding style issues suggested there.


thanks,

Takashi

> 
> Signed-off-by: Hannes Eder <hannes@hanneseder.net>
> ---
>  sound/core/init.c |    6 ++++--
>  1 files changed, 4 insertions(+), 2 deletions(-)
> 
> diff --git a/sound/core/init.c b/sound/core/init.c
> index af1e407..814d834 100644
> --- a/sound/core/init.c
> +++ b/sound/core/init.c
> @@ -637,8 +637,10 @@ int snd_card_register(struct snd_card *card)
>  #endif
>  #ifndef CONFIG_SYSFS_DEPRECATED
>  	if (card->card_dev) {
> -		device_create_file(card->card_dev, &card_id_attrs);
> -		device_create_file(card->card_dev, &card_number_attrs);
> +		if ((err = device_create_file(card->card_dev, &card_id_attrs)) < 0)
> +			return err;
> +		if ((err = device_create_file(card->card_dev, &card_number_attrs)) < 0)
> +			return err;
>  	}
>  #endif
>  	return 0;
> 

  reply	other threads:[~2008-11-18 16:14 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-11-18 15:59 Hannes Eder
2008-11-18 16:14 ` Takashi Iwai [this message]
2008-11-18 17:06   ` Hannes Eder
2008-11-18 17:12     ` Richard Holden
2008-11-18 17:12     ` Takashi Iwai
2008-11-18 17:25       ` Hannes Eder
2008-11-18 17:34         ` Takashi Iwai

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=s5hej19dn9o.wl%tiwai@suse.de \
    --to=tiwai@suse.de \
    --cc=hannes@hanneseder.net \
    --cc=kernel-janitors@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=perex@perex.cz \
    /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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®