Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

ALSA: hda: Downgrade BDL table overflow message

When BDL table entry overflow happens, the driver spews an error
message explicitly. But basically this condition can be triggered
easily by an application and it may flood of error logs
unnecessarily.

Downgrade the error message with dev_dbg() as a debug message
instead.

Link: https://lore.kernel.org/r/20240221100607.6565-2-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>

+1 -1
+1 -1
sound/hda/hdac_stream.c
··· 567 567 return 0; 568 568 569 569 error: 570 - dev_err(bus->dev, "Too many BDL entries: buffer=%d, period=%d\n", 570 + dev_dbg(bus->dev, "Too many BDL entries: buffer=%d, period=%d\n", 571 571 azx_dev->bufsize, period_bytes); 572 572 return -EINVAL; 573 573 }