aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiquel Raynal <miquel.raynal@free-electrons.com>2017-12-22 11:14:10 -0500
committerEduardo Valentin <edubezval@gmail.com>2018-01-01 16:21:48 -0500
commita9d58a1aa35f4c01a075303b5c7dcde84e7df124 (patch)
tree6537c09f1aa0708929892227bdfe0de88fb43584
parentccf8f522d198c0f69f343d6d6c61bcc906458818 (diff)
thermal: armada: Update Kconfig and module description
Update Armada thermal driver Kconfig entry as well as the driver's MODULE_DESCRIPTION content, now that 64-bit SoCs are also supported, eg. Armada 7K and Armada 8K. Use the generic term "Marvell EBU Armada SoCs" instead of listing all the supported SoCs everywhere (excepted in the Kconfig description, where it is useful to have a list). Signed-off-by: Miquel Raynal <miquel.raynal@free-electrons.com> Reviewed-by: Gregory CLEMENT <gregory.clement@free-electrons.com> Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
-rw-r--r--drivers/thermal/Kconfig4
-rw-r--r--drivers/thermal/armada_thermal.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig
index 315ae2926e20..b6adc54b96f1 100644
--- a/drivers/thermal/Kconfig
+++ b/drivers/thermal/Kconfig
@@ -301,13 +301,13 @@ config DB8500_THERMAL
301 thermal zone if trip points reached. 301 thermal zone if trip points reached.
302 302
303config ARMADA_THERMAL 303config ARMADA_THERMAL
304 tristate "Armada 370/XP thermal management" 304 tristate "Marvell EBU Armada SoCs thermal management"
305 depends on ARCH_MVEBU || COMPILE_TEST 305 depends on ARCH_MVEBU || COMPILE_TEST
306 depends on HAS_IOMEM 306 depends on HAS_IOMEM
307 depends on OF 307 depends on OF
308 help 308 help
309 Enable this option if you want to have support for thermal management 309 Enable this option if you want to have support for thermal management
310 controller present in Armada 370 and Armada XP SoC. 310 controller present in Marvell EBU Armada SoCs (370,375,XP,38x,7K,8K).
311 311
312config DA9062_THERMAL 312config DA9062_THERMAL
313 tristate "DA9062/DA9061 Dialog Semiconductor thermal driver" 313 tristate "DA9062/DA9061 Dialog Semiconductor thermal driver"
diff --git a/drivers/thermal/armada_thermal.c b/drivers/thermal/armada_thermal.c
index f2eba2a6f1a5..d426b230e1c5 100644
--- a/drivers/thermal/armada_thermal.c
+++ b/drivers/thermal/armada_thermal.c
@@ -1,5 +1,5 @@
1/* 1/*
2 * Marvell Armada 370/XP thermal sensor driver 2 * Marvell EBU Armada SoCs thermal sensor driver
3 * 3 *
4 * Copyright (C) 2013 Marvell 4 * Copyright (C) 2013 Marvell
5 * 5 *
@@ -407,5 +407,5 @@ static struct platform_driver armada_thermal_driver = {
407module_platform_driver(armada_thermal_driver); 407module_platform_driver(armada_thermal_driver);
408 408
409MODULE_AUTHOR("Ezequiel Garcia <ezequiel.garcia@free-electrons.com>"); 409MODULE_AUTHOR("Ezequiel Garcia <ezequiel.garcia@free-electrons.com>");
410MODULE_DESCRIPTION("Armada 370/XP thermal driver"); 410MODULE_DESCRIPTION("Marvell EBU Armada SoCs thermal driver");
411MODULE_LICENSE("GPL v2"); 411MODULE_LICENSE("GPL v2");