audio: tlv320dac310x.c:141: fix too few arguments for format

The logging statement specifies a parameter but one was never
provided. So add it.

Signed-off-by: Daniel Leung <daniel.leung@intel.com>
This commit is contained in:
Daniel Leung 2018-10-19 09:22:46 -07:00 committed by Anas Nashif
commit fb50cac6b8

View file

@ -138,7 +138,8 @@ static int codec_set_property(struct device *dev,
{ {
/* individual channel control not currently supported */ /* individual channel control not currently supported */
if (channel != AUDIO_CHANNEL_ALL) { if (channel != AUDIO_CHANNEL_ALL) {
LOG_ERR("channel %u invalid. must be AUDIO_CHANNEL_ALL"); LOG_ERR("channel %u invalid. must be AUDIO_CHANNEL_ALL",
channel);
return -EINVAL; return -EINVAL;
} }