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:
parent
263dab3eda
commit
fb50cac6b8
1 changed files with 2 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue