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

media: cec: increase debug level for 'queue full'

The "transmit queue full" message doesn't warrant debug level 1 since
it is already clear from the error code what's going on.

Bump to level 2.

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab+samsung@kernel.org>

authored by

Hans Verkuil and committed by
Mauro Carvalho Chehab
2efaf6eb 55623b41

+1 -1
+1 -1
drivers/media/cec/cec-adap.c
··· 807 807 } 808 808 809 809 if (adap->transmit_queue_sz >= CEC_MAX_MSG_TX_QUEUE_SZ) { 810 - dprintk(1, "%s: transmit queue full\n", __func__); 810 + dprintk(2, "%s: transmit queue full\n", __func__); 811 811 return -EBUSY; 812 812 } 813 813