From: Seung-Woo Kim Date: Wed, 1 Nov 2017 08:34:11 +0000 (+0900) Subject: cpufreq: remove a build warning caused by product log X-Git-Tag: accepted/tizen/unified/20171106.073145~11 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c45d4441d980357b1fb587c76d4e65f736e9c1b4;p=profile%2Fmobile%2Fplatform%2Fkernel%2Flinux-3.10-sc7730.git cpufreq: remove a build warning caused by product log There is a print format mismatch build warning caused by product log. Remove the build warning. Change-Id: I3e8659ab6c902e281c5fbc48298c5220005a8adb Signed-off-by: Seung-Woo Kim --- diff --git a/drivers/cpufreq/cpufreq.c b/drivers/cpufreq/cpufreq.c index ccaa932..6de9655 100644 --- a/drivers/cpufreq/cpufreq.c +++ b/drivers/cpufreq/cpufreq.c @@ -1160,7 +1160,7 @@ static int __cpufreq_remove_dev(struct device *dev, struct subsys_interface *sif pr_debug("policy %d is freed\n",data->cpu); kfree(data); } else { - pr_debug("%s: removing link, cpu: %d policy[%d] %x\n", __func__, cpu,data->cpu,data); + pr_debug("%s: removing link, cpu: %d policy[%d] %p\n", __func__, cpu,data->cpu,data); cpufreq_cpu_put(data); if (cpufreq_driver->target) { __cpufreq_governor(data, CPUFREQ_GOV_START);