mirror of
https://github.com/fail0verflow/switch-linux.git
synced 2025-05-04 02:34:21 -04:00
ALSA: pcm: Avoid "BUG:" string for warnings again
The commit [d507941beb
: ALSA: pcm: Correct PCM BUG error message]
made the warning prefix back to "BUG:" due to its previous wrong
prefix. But a kernel message containing "BUG:" seems taken as an Oops
message wrongly by some brain-dead daemons, and it annoys users in the
end. Instead of teaching daemons, change the string again to a more
reasonable one.
Fixes: 507941beb1e ('ALSA: pcm: Correct PCM BUG error message')
Cc: <stable@vger.kernel.org> # v3.19+
Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
1a414f48d7
commit
0ab1ace856
1 changed files with 1 additions and 1 deletions
|
@ -322,7 +322,7 @@ static int snd_pcm_update_hw_ptr0(struct snd_pcm_substream *substream,
|
||||||
char name[16];
|
char name[16];
|
||||||
snd_pcm_debug_name(substream, name, sizeof(name));
|
snd_pcm_debug_name(substream, name, sizeof(name));
|
||||||
pcm_err(substream->pcm,
|
pcm_err(substream->pcm,
|
||||||
"BUG: %s, pos = %ld, buffer size = %ld, period size = %ld\n",
|
"invalid position: %s, pos = %ld, buffer size = %ld, period size = %ld\n",
|
||||||
name, pos, runtime->buffer_size,
|
name, pos, runtime->buffer_size,
|
||||||
runtime->period_size);
|
runtime->period_size);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue