All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: ALSA: emu10k1: Use standard printk helpers
@ 2014-03-05 11:05 Dan Carpenter
  2014-03-05 11:11 ` Takashi Iwai
  0 siblings, 1 reply; 2+ messages in thread
From: Dan Carpenter @ 2014-03-05 11:05 UTC (permalink / raw)
  To: tiwai; +Cc: alsa-devel

Hello Takashi Iwai,

The patch 6f002b02166c: "ALSA: emu10k1: Use standard printk helpers"
from Feb 25, 2014, leads to the following static checker warning:

	sound/pci/emu10k1/io.c:75 snd_emu10k1_ptr_write()
	error: we previously assumed 'emu' could be null (see line 74)

sound/pci/emu10k1/io.c
    68  void snd_emu10k1_ptr_write(struct snd_emu10k1 *emu, unsigned int reg, unsigned int chn, unsigned int data)
    69  {
    70          unsigned int regptr;
    71          unsigned long flags;
    72          unsigned int mask;
    73  
    74          if (!emu) {
                    ^^^^
    75                  dev_err(emu->card->dev, "ptr_write: emu is null!\n");
                                ^^^^^^^^^^^^^^
Dereference.

    76                  dump_stack();
    77                  return;
    78          }

regards,
dan carpenter

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

end of thread, other threads:[~2014-03-05 11:11 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-05 11:05 ALSA: emu10k1: Use standard printk helpers Dan Carpenter
2014-03-05 11:11 ` Takashi Iwai

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.