mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-06 17:18:01 +07:00
[ALSA] sound: this amplifier only goes up to 7
sound: kernel log levels are 0-7 Kernel log levels are 0-7, not 0-9. Signed-off-by: Nick Andrew <nick@nick-andrew.net> Signed-off-by: Takashi Iwai <tiwai@suse.de>
This commit is contained in:
parent
eb5a662166
commit
a295e09e89
@ -39,7 +39,7 @@ void snd_verbose_printk(const char *file, int line, const char *format, ...)
|
|||||||
{
|
{
|
||||||
va_list args;
|
va_list args;
|
||||||
|
|
||||||
if (format[0] == '<' && format[1] >= '0' && format[1] <= '9' && format[2] == '>') {
|
if (format[0] == '<' && format[1] >= '0' && format[1] <= '7' && format[2] == '>') {
|
||||||
char tmp[] = "<0>";
|
char tmp[] = "<0>";
|
||||||
tmp[1] = format[1];
|
tmp[1] = format[1];
|
||||||
printk("%sALSA %s:%d: ", tmp, file, line);
|
printk("%sALSA %s:%d: ", tmp, file, line);
|
||||||
@ -60,7 +60,7 @@ void snd_verbose_printd(const char *file, int line, const char *format, ...)
|
|||||||
{
|
{
|
||||||
va_list args;
|
va_list args;
|
||||||
|
|
||||||
if (format[0] == '<' && format[1] >= '0' && format[1] <= '9' && format[2] == '>') {
|
if (format[0] == '<' && format[1] >= '0' && format[1] <= '7' && format[2] == '>') {
|
||||||
char tmp[] = "<0>";
|
char tmp[] = "<0>";
|
||||||
tmp[1] = format[1];
|
tmp[1] = format[1];
|
||||||
printk("%sALSA %s:%d: ", tmp, file, line);
|
printk("%sALSA %s:%d: ", tmp, file, line);
|
||||||
|
Loading…
Reference in New Issue
Block a user