From: Clemens Ladisch Date: Sun, 4 Sep 2011 20:12:20 +0000 (+0200) Subject: ALSA: dice: reduce noisy logging X-Git-Tag: firefly_0821_release~176^2~4889^2~120^2~25 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d13109673ac49cd4b992df17238ee030be7ed7f0;p=firefly-linux-kernel-4.4.55.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 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); }