diff options
author | Eliot Blennerhassett <eblennerhassett@audioscience.com> | 2011-02-09 23:26:02 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2011-02-10 12:49:25 -0500 |
commit | 1528fbb5dcb5089652147bc6b76aa1f15e50c078 (patch) | |
tree | 16123d5a3fbe9c3b424ed4876c7eeeffa8b7cd5a /sound/pci/asihpi/hpidebug.h | |
parent | 14652e67ff6bb694a509059d670ed56b769e2c7b (diff) |
ALSA: asihpi - Checkpatch line lengths etc.
Signed-off-by: Eliot Blennerhassett <eblennerhassett@audioscience.com>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/asihpi/hpidebug.h')
-rw-r--r-- | sound/pci/asihpi/hpidebug.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sound/pci/asihpi/hpidebug.h b/sound/pci/asihpi/hpidebug.h index 632d7d0840c..940f54c3c53 100644 --- a/sound/pci/asihpi/hpidebug.h +++ b/sound/pci/asihpi/hpidebug.h | |||
@@ -80,17 +80,17 @@ void hpi_debug_data(u16 *pdata, u32 len); | |||
80 | #define HPI_DEBUG_MESSAGE(level, phm) \ | 80 | #define HPI_DEBUG_MESSAGE(level, phm) \ |
81 | do { \ | 81 | do { \ |
82 | if (hpi_debug_level >= HPI_DEBUG_LEVEL_##level) { \ | 82 | if (hpi_debug_level >= HPI_DEBUG_LEVEL_##level) { \ |
83 | hpi_debug_message(phm,HPI_DEBUG_FLAG_##level \ | 83 | hpi_debug_message(phm, HPI_DEBUG_FLAG_##level \ |
84 | FILE_LINE __stringify(level)); \ | 84 | FILE_LINE __stringify(level)); \ |
85 | } \ | 85 | } \ |
86 | } while (0) | 86 | } while (0) |
87 | 87 | ||
88 | #define HPI_DEBUG_RESPONSE(phr) \ | 88 | #define HPI_DEBUG_RESPONSE(phr) \ |
89 | do { \ | 89 | do { \ |
90 | if (((hpi_debug_level >= HPI_DEBUG_LEVEL_DEBUG) && (phr->error)) ||\ | 90 | if (((hpi_debug_level >= HPI_DEBUG_LEVEL_DEBUG) && \ |
91 | (phr->error)) ||\ | ||
91 | (hpi_debug_level >= HPI_DEBUG_LEVEL_VERBOSE)) \ | 92 | (hpi_debug_level >= HPI_DEBUG_LEVEL_VERBOSE)) \ |
92 | printk(KERN_DEBUG\ | 93 | printk(KERN_DEBUG "HPI_RES%d,%d,%d\n", \ |
93 | "HPI_RES%d,%d,%d\n", \ | ||
94 | phr->version, phr->error, phr->specific_error); \ | 94 | phr->version, phr->error, phr->specific_error); \ |
95 | } while (0) | 95 | } while (0) |
96 | 96 | ||