Commit f688a0df authored by Mark Hills's avatar Mark Hills Committed by Takashi Iwai

ALSA: echoaudio: Prevent some noise on unloading the module

These are valid conditions in normal circumstances, so do not "warn" but
make them for debugging.
Signed-off-by: default avatarMark Hills <mark@xwax.org>
Link: https://lore.kernel.org/r/20200708101848.3457-4-mark@xwax.orgSigned-off-by: default avatarTakashi Iwai <tiwai@suse.de>
parent 6c331254
......@@ -898,7 +898,7 @@ static int pause_transport(struct echoaudio *chip, u32 channel_mask)
return 0;
}
dev_warn(chip->card->dev, "pause_transport: No pipes to stop!\n");
dev_dbg(chip->card->dev, "pause_transport: No pipes to stop!\n");
return 0;
}
......@@ -924,7 +924,7 @@ static int stop_transport(struct echoaudio *chip, u32 channel_mask)
return 0;
}
dev_warn(chip->card->dev, "stop_transport: No pipes to stop!\n");
dev_dbg(chip->card->dev, "stop_transport: No pipes to stop!\n");
return 0;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment