Added fix to AES67 Driver to remove a kernel message that can delay the playback startup on slow platform

This commit is contained in:
Andrea Bondavalli 2020-06-15 20:49:33 +02:00
parent 95e6fbcf56
commit f9a07569f9

View File

@ -65,3 +65,17 @@ index ac65bbb..a65994f 100644
#else
#include <string.h>
#endif
diff --git a/driver/audio_driver.c b/driver/audio_driver.c
index 3d9debd..0ff2dfc 100644
--- a/driver/audio_driver.c
+++ b/driver/audio_driver.c
@@ -1312,7 +1312,7 @@ static int mr_alsa_audio_pcm_playback_copy_internal( struct snd_pcm_substream *s
if (channel > 0 && channel >= runtime->channels)
{
- printk(KERN_WARNING "Channel %d copy ignored because it does not fit the available runtime channels (%d)", channel, runtime->channels);
+ //printk(KERN_WARNING "Channel %d copy ignored because it does not fit the available runtime channels (%d)", channel, runtime->channels);
return 0;
}