cpufreq: remove a build warning caused by product log 92/158492/1
authorSeung-Woo Kim <sw0312.kim@samsung.com>
Wed, 1 Nov 2017 08:34:11 +0000 (17:34 +0900)
committerSeung-Woo Kim <sw0312.kim@samsung.com>
Wed, 1 Nov 2017 08:34:13 +0000 (17:34 +0900)
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 <sw0312.kim@samsung.com>
drivers/cpufreq/cpufreq.c

index ccaa932..6de9655 100644 (file)
@@ -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);