From: Chungwoo Park Date: Tue, 15 May 2018 13:12:35 +0000 (+0900) Subject: [COMMON] exynos-dm: Add node name to print code. X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=11fc8cf7ca35f800f38d6c61ed4f1fe446867ff1;p=GitHub%2FLineageOS%2Fandroid_kernel_motorola_exynos9610.git [COMMON] exynos-dm: Add node name to print code. Change-Id: Iefe12dbb530c18c46ef0ee67e126046c9ca2af07 Signed-off-by: Chungwoo Park --- diff --git a/drivers/soc/samsung/exynos-dm.c b/drivers/soc/samsung/exynos-dm.c index e6ff576a2922..d74026c0670c 100644 --- a/drivers/soc/samsung/exynos-dm.c +++ b/drivers/soc/samsung/exynos-dm.c @@ -370,7 +370,7 @@ static int exynos_dm_parse_dt(struct device_node *np, struct exynos_dm_device *d } #ifdef CONFIG_EXYNOS_ACPM if (of_property_read_string(child_np, "policy_use", &policy_use)) { - dev_info(dm->dev, "This doesn't need to send policy to ACPM\n"); + dev_info(dm->dev, "[%s] This doesn't need to send policy to ACPM\n", child_np->name); } else { if (!strcmp(policy_use, "true")) dm->dm_data[index].policy_use = true;