summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTang Yuantian <Yuantian.Tang@freescale.com>2015-11-03 06:14:24 (GMT)
committerTang Yuantian <Yuantian.Tang@freescale.com>2015-11-03 06:14:24 (GMT)
commit418316ce8769300438fc076e04d5ac5e6d7f870d (patch)
tree4511f300172ddcb26fb295ab5962260071565b66
parente82a7610e8e45f51f3490b894cae042be681148f (diff)
downloadlinux-fsl-qoriq-418316ce8769300438fc076e04d5ac5e6d7f870d.tar.xz
cpufreq: qoriq: fix output information error
This driver is used by both ARM-based core and PowerPC-based core. So PowerPC specific information should be removed. Signed-off-by: Tang Yuantian <Yuantian.Tang@freescale.com>
-rw-r--r--drivers/cpufreq/qoriq-cpufreq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/cpufreq/qoriq-cpufreq.c b/drivers/cpufreq/qoriq-cpufreq.c
index 36b2e6e..cd620fb 100644
--- a/drivers/cpufreq/qoriq-cpufreq.c
+++ b/drivers/cpufreq/qoriq-cpufreq.c
@@ -525,7 +525,7 @@ static int __init qoriq_cpufreq_init(void)
ret = cpufreq_register_driver(&qoriq_cpufreq_driver);
if (!ret)
- pr_info("Freescale PowerPC qoriq CPU frequency scaling driver\n");
+ pr_info("Freescale QorIQ CPU frequency scaling driver\n");
return ret;
}
@@ -539,4 +539,4 @@ module_exit(qoriq_cpufreq_exit);
MODULE_LICENSE("GPL");
MODULE_AUTHOR("Tang Yuantian <Yuantian.Tang@freescale.com>");
-MODULE_DESCRIPTION("cpufreq driver for Freescale e500mc series SoCs");
+MODULE_DESCRIPTION("cpufreq driver for Freescale QorIQ series SoCs");