diff options
author | Clemens Ladisch <clemens@ladisch.de> | 2011-09-05 00:12:20 +0400 |
---|---|---|
committer | Clemens Ladisch <clemens@ladisch.de> | 2013-10-21 00:07:57 +0400 |
commit | d13109673ac49cd4b992df17238ee030be7ed7f0 (patch) | |
tree | 8b8cb01dab714638c59ab6c3839b702f87a55161 /sound/firewire | |
parent | 341682cd4f5603fccbf559d201402539880c04a5 (diff) | |
download | linux-d13109673ac49cd4b992df17238ee030be7ed7f0.tar.xz |
ALSA: dice: reduce noisy logging
The notification bits are not of general interest; log them only when
debugging.
Signed-off-by: Clemens Ladisch <clemens@ladisch.de>
Diffstat (limited to 'sound/firewire')
-rw-r--r-- | sound/firewire/dice.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/firewire/dice.c b/sound/firewire/dice.c index d3f3eb7a546a..02c7b5a42373 100644 --- a/sound/firewire/dice.c +++ b/sound/firewire/dice.c @@ -505,8 +505,8 @@ static void dice_notification(struct fw_card *card, struct fw_request *request, fw_send_response(card, request, RCODE_ADDRESS_ERROR); return; } - dev_info(&dice->unit->device, - "notification: %08x\n", be32_to_cpup(data)); + dev_dbg(&dice->unit->device, + "notification: %08x\n", be32_to_cpup(data)); fw_send_response(card, request, RCODE_COMPLETE); } |