summaryrefslogtreecommitdiffstats
path: root/sound/soc/intel/skylake/skl-topology.c
diff options
context:
space:
mode:
authorColin Ian King2016-09-16 19:51:21 +0200
committerMark Brown2016-09-24 20:42:42 +0200
commitecd286a9d8a75771f73110b990512f10dc342356 (patch)
tree3d6ed9dc1931e9ee8a011439ee3ef53d6f1ab842 /sound/soc/intel/skylake/skl-topology.c
parentASoC: Intel: Skylake: Add table for module id for quick ref (diff)
downloadkernel-qcow2-linux-ecd286a9d8a75771f73110b990512f10dc342356.tar.gz
kernel-qcow2-linux-ecd286a9d8a75771f73110b990512f10dc342356.tar.xz
kernel-qcow2-linux-ecd286a9d8a75771f73110b990512f10dc342356.zip
ASoC: Intel: Skylake: add missing \n to end of dev_* messages
Trival fix, some dev_* messages are missing a \n, so add it. Signed-off-by: Colin Ian King <colin.king@canonical.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'sound/soc/intel/skylake/skl-topology.c')
-rw-r--r--sound/soc/intel/skylake/skl-topology.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/sound/soc/intel/skylake/skl-topology.c b/sound/soc/intel/skylake/skl-topology.c
index e48f872505b1..b5b1934d8550 100644
--- a/sound/soc/intel/skylake/skl-topology.c
+++ b/sound/soc/intel/skylake/skl-topology.c
@@ -1614,7 +1614,7 @@ static int skl_tplg_fill_pins_info(struct device *dev,
break;
default:
- dev_err(dev, "Invalid direction value");
+ dev_err(dev, "Invalid direction value\n");
return -EINVAL;
}
@@ -1652,7 +1652,7 @@ static int skl_tplg_fill_fmt(struct device *dev,
break;
default:
- dev_err(dev, "Invalid direction value");
+ dev_err(dev, "Invalid direction value\n");
return -EINVAL;
}
@@ -1690,7 +1690,7 @@ static int skl_tplg_fill_fmt(struct device *dev,
break;
default:
- dev_err(dev, "Invalid token %d", tkn);
+ dev_err(dev, "Invalid token %d\n", tkn);
return -EINVAL;
}
@@ -1703,7 +1703,7 @@ static int skl_tplg_get_uuid(struct device *dev, struct skl_module_cfg *mconfig,
if (uuid_tkn->token == SKL_TKN_UUID)
memcpy(&mconfig->guid, &uuid_tkn->uuid, 16);
else {
- dev_err(dev, "Not an UUID token tkn %d", uuid_tkn->token);
+ dev_err(dev, "Not an UUID token tkn %d\n", uuid_tkn->token);
return -EINVAL;
}
@@ -1939,7 +1939,7 @@ static int skl_tplg_get_tokens(struct device *dev,
switch (array->type) {
case SND_SOC_TPLG_TUPLE_TYPE_STRING:
- dev_warn(dev, "no string tokens expected for skl tplg");
+ dev_warn(dev, "no string tokens expected for skl tplg\n");
continue;
case SND_SOC_TPLG_TUPLE_TYPE_UUID:
@@ -1992,7 +1992,7 @@ static int skl_tplg_get_desc_blocks(struct device *dev,
return tkn_elem->value;
default:
- dev_err(dev, "Invalid descriptor token %d", tkn_elem->token);
+ dev_err(dev, "Invalid descriptor token %d\n", tkn_elem->token);
break;
}
@@ -2252,7 +2252,7 @@ static int skl_tplg_fill_str_mfest_tkn(struct device *dev,
break;
default:
- dev_err(dev, "Not a string token %d", str_elem->token);
+ dev_err(dev, "Not a string token %d\n", str_elem->token);
break;
}
@@ -2293,7 +2293,7 @@ static int skl_tplg_get_int_tkn(struct device *dev,
break;
default:
- dev_err(dev, "Not a manifest token %d", tkn_elem->token);
+ dev_err(dev, "Not a manifest token %d\n", tkn_elem->token);
return -EINVAL;
}
@@ -2332,7 +2332,7 @@ static int skl_tplg_get_manifest_tkn(struct device *dev,
continue;
case SND_SOC_TPLG_TUPLE_TYPE_UUID:
- dev_warn(dev, "no uuid tokens for skl tplf manifest");
+ dev_warn(dev, "no uuid tokens for skl tplf manifest\n");
continue;
default: