diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-03-19 04:47:30 -0400 |
---|---|---|
committer | Daniel Vetter <daniel.vetter@ffwll.ch> | 2013-03-19 04:47:30 -0400 |
commit | 0d4a42f6bd298e826620585e766a154ab460617a (patch) | |
tree | 406d8f7778691d858dbe3e48e4bbb10e99c0a58a /include/sound/core.h | |
parent | d62b4892f3d9f7dd2002e5309be10719d6805b0f (diff) | |
parent | a937536b868b8369b98967929045f1df54234323 (diff) |
Merge tag 'v3.9-rc3' into drm-intel-next-queued
Backmerge so that I can merge Imre Deak's coalesced sg entries fixes,
which depend upon the new for_each_sg_page introduce in
commit a321e91b6d73ed011ffceed384c40d2785cf723b
Author: Imre Deak <imre.deak@intel.com>
Date: Wed Feb 27 17:02:56 2013 -0800
lib/scatterlist: add simple page iterator
The merge itself is just two trivial conflicts:
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Diffstat (limited to 'include/sound/core.h')
-rw-r--r-- | include/sound/core.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/include/sound/core.h b/include/sound/core.h index 93896ad1fcdd..7cede2d6aa86 100644 --- a/include/sound/core.h +++ b/include/sound/core.h | |||
@@ -394,8 +394,11 @@ void __snd_printk(unsigned int level, const char *file, int line, | |||
394 | 394 | ||
395 | #else /* !CONFIG_SND_DEBUG */ | 395 | #else /* !CONFIG_SND_DEBUG */ |
396 | 396 | ||
397 | #define snd_printd(fmt, args...) do { } while (0) | 397 | __printf(1, 2) |
398 | #define _snd_printd(level, fmt, args...) do { } while (0) | 398 | static inline void snd_printd(const char *format, ...) {} |
399 | __printf(2, 3) | ||
400 | static inline void _snd_printd(int level, const char *format, ...) {} | ||
401 | |||
399 | #define snd_BUG() do { } while (0) | 402 | #define snd_BUG() do { } while (0) |
400 | static inline int __snd_bug_on(int cond) | 403 | static inline int __snd_bug_on(int cond) |
401 | { | 404 | { |
@@ -416,7 +419,8 @@ static inline int __snd_bug_on(int cond) | |||
416 | #define snd_printdd(format, args...) \ | 419 | #define snd_printdd(format, args...) \ |
417 | __snd_printk(2, __FILE__, __LINE__, format, ##args) | 420 | __snd_printk(2, __FILE__, __LINE__, format, ##args) |
418 | #else | 421 | #else |
419 | #define snd_printdd(format, args...) do { } while (0) | 422 | __printf(1, 2) |
423 | static inline void snd_printdd(const char *format, ...) {} | ||
420 | #endif | 424 | #endif |
421 | 425 | ||
422 | 426 | ||
@@ -454,6 +458,7 @@ struct snd_pci_quirk { | |||
454 | #define SND_PCI_QUIRK_MASK(vend, mask, dev, xname, val) \ | 458 | #define SND_PCI_QUIRK_MASK(vend, mask, dev, xname, val) \ |
455 | {_SND_PCI_QUIRK_ID_MASK(vend, mask, dev), \ | 459 | {_SND_PCI_QUIRK_ID_MASK(vend, mask, dev), \ |
456 | .value = (val), .name = (xname)} | 460 | .value = (val), .name = (xname)} |
461 | #define snd_pci_quirk_name(q) ((q)->name) | ||
457 | #else | 462 | #else |
458 | #define SND_PCI_QUIRK(vend,dev,xname,val) \ | 463 | #define SND_PCI_QUIRK(vend,dev,xname,val) \ |
459 | {_SND_PCI_QUIRK_ID(vend, dev), .value = (val)} | 464 | {_SND_PCI_QUIRK_ID(vend, dev), .value = (val)} |
@@ -461,6 +466,7 @@ struct snd_pci_quirk { | |||
461 | {_SND_PCI_QUIRK_ID_MASK(vend, mask, dev), .value = (val)} | 466 | {_SND_PCI_QUIRK_ID_MASK(vend, mask, dev), .value = (val)} |
462 | #define SND_PCI_QUIRK_VENDOR(vend, xname, val) \ | 467 | #define SND_PCI_QUIRK_VENDOR(vend, xname, val) \ |
463 | {_SND_PCI_QUIRK_ID_MASK(vend, 0, 0), .value = (val)} | 468 | {_SND_PCI_QUIRK_ID_MASK(vend, 0, 0), .value = (val)} |
469 | #define snd_pci_quirk_name(q) "" | ||
464 | #endif | 470 | #endif |
465 | 471 | ||
466 | const struct snd_pci_quirk * | 472 | const struct snd_pci_quirk * |