ALSA: Make snd_printd() and snd_printdd() inline
authorTakashi Iwai <tiwai@suse.de>
Fri, 25 Jan 2013 09:54:07 +0000 (10:54 +0100)
committerTakashi Iwai <tiwai@suse.de>
Fri, 25 Jan 2013 17:32:14 +0000 (18:32 +0100)
commit86b2723725a2e186f5699d97cb20014fa893931f
tree844f9f196c14bf3f361e85ec28b5ad60e334dcc0
parentf4f678d22219f5821f46bb78eb4da7f76f1899bc
ALSA: Make snd_printd() and snd_printdd() inline

Because currently snd_printd() and snd_printdd() macros are expanded
to empty when CONFIG_SND_DEBUG=n, a compile warning like below
appears sometimes, and we had to covert it by ugly ifdefs:
  sound/pci/hda/patch_sigmatel.c: In function ‘stac92hd71bxx_fixup_hp’:
  sound/pci/hda/patch_sigmatel.c:2434:24: warning: unused variable ‘spec’ [-Wunused-variable]

For "fixing" these issues better, this patch replaces snd_printd() and
snd_printdd() definitions with empty inline functions instead of
macros.  This should have the same effect but shut up warnings like
above.

But since we had already put ifdefs, changing to inline functions
would trigger compile errors.  So, such ifdefs is removed in this
patch.

In addition, snd_pci_quirk name field is defined only when
CONFIG_SND_DEBUG_VERBOSE is set, and the reference to it in
snd_printdd() argument triggers the build errors, too.  For avoiding
these errors, introduce a new macro snd_pci_quirk_name() that is
defined no matter how the debug option is set.

Reported-by: Stratos Karafotis <stratosk@semaphore.gr>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
include/sound/core.h
sound/drivers/vx/vx_core.c
sound/pci/atiixp.c
sound/pci/hda/hda_auto_parser.c
sound/pci/hda/hda_generic.c
sound/pci/intel8x0.c
sound/pci/maestro3.c
sound/pci/nm256/nm256.c
sound/pci/pcxhr/pcxhr_core.c
sound/pci/via82xx.c
sound/usb/pcm.c