From: Clemens Ladisch Date: Sun, 4 Sep 2011 20:12:20 +0000 (+0200) Subject: ALSA: dice: reduce noisy logging X-Git-Tag: v3.13-rc1~122^2~87^2~25 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d13109673ac49cd4b992df17238ee030be7ed7f0;p=thirdparty%2Fkernel%2Flinux.git ALSA: dice: reduce noisy logging The notification bits are not of general interest; log them only when debugging. Signed-off-by: Clemens Ladisch --- diff --git a/sound/firewire/dice.c b/sound/firewire/dice.c index d3f3eb7a546a8..02c7b5a423737 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); }