projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c33125
)
ALSA: echoaudio: Prevent some noise on unloading the module
author
Mark Hills
<mark@xwax.org>
Wed, 8 Jul 2020 10:18:47 +0000
(11:18 +0100)
committer
Takashi Iwai
<tiwai@suse.de>
Thu, 9 Jul 2020 10:59:07 +0000
(12:59 +0200)
These are valid conditions in normal circumstances, so do not "warn" but
make them for debugging.
Signed-off-by: Mark Hills <mark@xwax.org>
Link:
https://lore.kernel.org/r/20200708101848.3457-4-mark@xwax.org
Signed-off-by: Takashi Iwai <tiwai@suse.de>
sound/pci/echoaudio/echoaudio_dsp.c
patch
|
blob
|
history
diff --git
a/sound/pci/echoaudio/echoaudio_dsp.c
b/sound/pci/echoaudio/echoaudio_dsp.c
index
f02f5b1
..
d10d0e4
100644
(file)
--- a/
sound/pci/echoaudio/echoaudio_dsp.c
+++ b/
sound/pci/echoaudio/echoaudio_dsp.c
@@
-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;
}