diff options
author | Benjamin Tissoires <benjamin.tissoires@gmail.com> | 2012-12-04 15:27:46 (GMT) |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-12-05 09:56:45 (GMT) |
commit | fa738644e57d5fd54b8c0a4f5a7815972e65ce1a (patch) | |
tree | 80adc23472707f641f72a28fdc2e937ba025e395 /firmware | |
parent | ee8e8806348732e328d119418a9788aabeceed0a (diff) | |
download | linux-fa738644e57d5fd54b8c0a4f5a7815972e65ce1a.tar.xz |
HID: i2c-hid: fix i2c_hid_dbg macro
This avoids the problematic case:
if (condition)
i2c_hid_dbg(ihid, "Blah blah %d\n", i);
else
do_something_very_important();
Which looks correct, however with the previous macro definition,
this expands to the unexpected:
if (condition) {
if (debug) \
dev_printk(KERN_DEBUG, &ihid->client->dev,
"Blah blah %d\n", i);
else
do_something_very_important();
}
Signed-off-by: Benjamin Tissoires <benjamin.tissoires@gmail.com>
Reviewed-by: Jean Delvare <khali@linux-fr.org>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>
Diffstat (limited to 'firmware')
0 files changed, 0 insertions, 0 deletions