linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHv2 00/10] thermal: add COMPILE_TEST (on drivers)
@ 2015-09-14  2:31 Eduardo Valentin
  2015-09-14  2:31 ` [PATCHv2 01/10] thermal: hisi: allow compile test Eduardo Valentin
                   ` (9 more replies)
  0 siblings, 10 replies; 11+ messages in thread
From: Eduardo Valentin @ 2015-09-14  2:31 UTC (permalink / raw)
  To: Rui Zhang; +Cc: LKML, Linux PM, Eduardo Valentin

Hi,

This is v2. Now I tested the series with bfin as target, to avoid
false positives. The difference from V1:
- Added acked-bys
- Removed patches that could cause compilation issues


BR,

Eduardo Valentin (10):
  thermal: hisi: allow compile test
  thermal: spear: allow compile test
  thermal: rockchip: allow compile test
  thermal: kirkwood: allow compile test
  thermal: dove: allow compile test
  thermal: armada: allow compile test
  thermal: exynos: allow compile test
  thermal: qcom_spmi: allow compile test
  thermal: ti-soc: allow compile test
  thermal: ti-soc: Kconfig fix to avoid menu showing wrongly

 drivers/thermal/Kconfig                | 17 +++++++++--------
 drivers/thermal/ti-soc-thermal/Kconfig |  8 +++-----
 2 files changed, 12 insertions(+), 13 deletions(-)

-- 
2.5.0


^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCHv2 01/10] thermal: hisi: allow compile test
  2015-09-14  2:31 [PATCHv2 00/10] thermal: add COMPILE_TEST (on drivers) Eduardo Valentin
@ 2015-09-14  2:31 ` Eduardo Valentin
  2015-09-14  2:31 ` [PATCHv2 02/10] thermal: spear: " Eduardo Valentin
                   ` (8 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Eduardo Valentin @ 2015-09-14  2:31 UTC (permalink / raw)
  To: Rui Zhang; +Cc: LKML, Linux PM, Eduardo Valentin

Adding COMPILE_TEST flag to hisi driver to facilitate maintenance.

Cc: Zhang Rui <rui.zhang@intel.com>
Cc: linux-pm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
---
 drivers/thermal/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig
index 118938e..f2b1d31 100644
--- a/drivers/thermal/Kconfig
+++ b/drivers/thermal/Kconfig
@@ -163,7 +163,7 @@ config THERMAL_EMULATION
 
 config HISI_THERMAL
 	tristate "Hisilicon thermal driver"
-	depends on ARCH_HISI && CPU_THERMAL && OF
+	depends on (ARCH_HISI && CPU_THERMAL && OF) || COMPILE_TEST
 	help
 	  Enable this to plug hisilicon's thermal sensor driver into the Linux
 	  thermal framework. cpufreq is used as the cooling device to throttle
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCHv2 02/10] thermal: spear: allow compile test
  2015-09-14  2:31 [PATCHv2 00/10] thermal: add COMPILE_TEST (on drivers) Eduardo Valentin
  2015-09-14  2:31 ` [PATCHv2 01/10] thermal: hisi: allow compile test Eduardo Valentin
@ 2015-09-14  2:31 ` Eduardo Valentin
       [not found] ` <1442197899-5952-1-git-send-email-edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
                   ` (7 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Eduardo Valentin @ 2015-09-14  2:31 UTC (permalink / raw)
  To: Rui Zhang; +Cc: LKML, Linux PM, Eduardo Valentin

Adding COMPILE_TEST flag to spear driver to facilitate
maintenance.

Cc: Zhang Rui <rui.zhang@intel.com>
Cc: linux-pm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Acked-by: Viresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
---
 drivers/thermal/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig
index f2b1d31..0334886 100644
--- a/drivers/thermal/Kconfig
+++ b/drivers/thermal/Kconfig
@@ -182,7 +182,7 @@ config IMX_THERMAL
 
 config SPEAR_THERMAL
 	bool "SPEAr thermal sensor driver"
-	depends on PLAT_SPEAR
+	depends on PLAT_SPEAR || COMPILE_TEST
 	depends on OF
 	help
 	  Enable this to plug the SPEAr thermal sensor driver into the Linux
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCHv2 03/10] thermal: rockchip: allow compile test
       [not found] ` <1442197899-5952-1-git-send-email-edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2015-09-14  2:31   ` Eduardo Valentin
  0 siblings, 0 replies; 11+ messages in thread
From: Eduardo Valentin @ 2015-09-14  2:31 UTC (permalink / raw)
  To: Rui Zhang
  Cc: Heiko Stuebner, Linux PM, LKML, Eduardo Valentin,
	linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r

Adding COMPILE_TEST flag to rockchip driver to facilitate
maintenance.

Cc: Zhang Rui <rui.zhang-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Cc: Heiko Stuebner <heiko-4mtYJXux2i+zQB+pC5nmwQ@public.gmane.org>
Cc: linux-pm-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Cc: linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org
Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
Signed-off-by: Eduardo Valentin <edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
---
 drivers/thermal/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig
index 0334886..2e0aaee 100644
--- a/drivers/thermal/Kconfig
+++ b/drivers/thermal/Kconfig
@@ -190,7 +190,7 @@ config SPEAR_THERMAL
 
 config ROCKCHIP_THERMAL
 	tristate "Rockchip thermal driver"
-	depends on ARCH_ROCKCHIP
+	depends on ARCH_ROCKCHIP || COMPILE_TEST
 	depends on RESET_CONTROLLER
 	help
 	  Rockchip thermal driver provides support for Temperature sensor
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCHv2 04/10] thermal: kirkwood: allow compile test
  2015-09-14  2:31 [PATCHv2 00/10] thermal: add COMPILE_TEST (on drivers) Eduardo Valentin
                   ` (2 preceding siblings ...)
       [not found] ` <1442197899-5952-1-git-send-email-edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
@ 2015-09-14  2:31 ` Eduardo Valentin
  2015-09-14  2:31 ` [PATCHv2 05/10] thermal: dove: " Eduardo Valentin
                   ` (5 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Eduardo Valentin @ 2015-09-14  2:31 UTC (permalink / raw)
  To: Rui Zhang; +Cc: LKML, Linux PM, Eduardo Valentin

Adding COMPILE_TEST flag to kirkwood driver to facilitate
maintenance.

Cc: Zhang Rui <rui.zhang@intel.com>
Cc: linux-pm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
---
 drivers/thermal/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig
index 2e0aaee..f1da24e 100644
--- a/drivers/thermal/Kconfig
+++ b/drivers/thermal/Kconfig
@@ -208,7 +208,7 @@ config RCAR_THERMAL
 
 config KIRKWOOD_THERMAL
 	tristate "Temperature sensor on Marvell Kirkwood SoCs"
-	depends on MACH_KIRKWOOD
+	depends on MACH_KIRKWOOD || COMPILE_TEST
 	depends on OF
 	help
 	  Support for the Kirkwood thermal sensor driver into the Linux thermal
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCHv2 05/10] thermal: dove: allow compile test
  2015-09-14  2:31 [PATCHv2 00/10] thermal: add COMPILE_TEST (on drivers) Eduardo Valentin
                   ` (3 preceding siblings ...)
  2015-09-14  2:31 ` [PATCHv2 04/10] thermal: kirkwood: " Eduardo Valentin
@ 2015-09-14  2:31 ` Eduardo Valentin
  2015-09-14  2:31 ` [PATCHv2 06/10] thermal: armada: " Eduardo Valentin
                   ` (4 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Eduardo Valentin @ 2015-09-14  2:31 UTC (permalink / raw)
  To: Rui Zhang; +Cc: LKML, Linux PM, Eduardo Valentin

Adding COMPILE_TEST flag to dove driver to facilitate
maintenance.

Cc: Zhang Rui <rui.zhang@intel.com>
Cc: linux-pm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
---
 drivers/thermal/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig
index f1da24e..b38ce41 100644
--- a/drivers/thermal/Kconfig
+++ b/drivers/thermal/Kconfig
@@ -216,7 +216,7 @@ config KIRKWOOD_THERMAL
 
 config DOVE_THERMAL
 	tristate "Temperature sensor on Marvell Dove SoCs"
-	depends on ARCH_DOVE || MACH_DOVE
+	depends on ARCH_DOVE || MACH_DOVE || COMPILE_TEST
 	depends on OF
 	help
 	  Support for the Dove thermal sensor driver in the Linux thermal
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCHv2 06/10] thermal: armada: allow compile test
  2015-09-14  2:31 [PATCHv2 00/10] thermal: add COMPILE_TEST (on drivers) Eduardo Valentin
                   ` (4 preceding siblings ...)
  2015-09-14  2:31 ` [PATCHv2 05/10] thermal: dove: " Eduardo Valentin
@ 2015-09-14  2:31 ` Eduardo Valentin
  2015-09-14  2:31 ` [PATCHv2 07/10] thermal: exynos: " Eduardo Valentin
                   ` (3 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Eduardo Valentin @ 2015-09-14  2:31 UTC (permalink / raw)
  To: Rui Zhang; +Cc: LKML, Linux PM, Eduardo Valentin

Adding COMPILE_TEST flag to armada driver to facilitate
maintenance.

Cc: Zhang Rui <rui.zhang@intel.com>
Cc: linux-pm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
---
 drivers/thermal/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig
index b38ce41..c2c8cba 100644
--- a/drivers/thermal/Kconfig
+++ b/drivers/thermal/Kconfig
@@ -234,7 +234,7 @@ config DB8500_THERMAL
 
 config ARMADA_THERMAL
 	tristate "Armada 370/XP thermal management"
-	depends on ARCH_MVEBU
+	depends on ARCH_MVEBU || COMPILE_TEST
 	depends on OF
 	help
 	  Enable this option if you want to have support for thermal management
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCHv2 07/10] thermal: exynos: allow compile test
  2015-09-14  2:31 [PATCHv2 00/10] thermal: add COMPILE_TEST (on drivers) Eduardo Valentin
                   ` (5 preceding siblings ...)
  2015-09-14  2:31 ` [PATCHv2 06/10] thermal: armada: " Eduardo Valentin
@ 2015-09-14  2:31 ` Eduardo Valentin
  2015-09-14  2:31 ` [PATCHv2 08/10] thermal: qcom_spmi: " Eduardo Valentin
                   ` (2 subsequent siblings)
  9 siblings, 0 replies; 11+ messages in thread
From: Eduardo Valentin @ 2015-09-14  2:31 UTC (permalink / raw)
  To: Rui Zhang
  Cc: LKML, Linux PM, Eduardo Valentin, Lukasz Majewski,
	linux-samsung-soc

Adding COMPILE_TEST flag to exynos driver to facilitate
maintenance.

Cc: Lukasz Majewski <l.majewski@samsung.com>
Cc: Zhang Rui <rui.zhang@intel.com>
Cc: linux-pm@vger.kernel.org
Cc: linux-samsung-soc@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
---
 drivers/thermal/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig
index c2c8cba..202905e8 100644
--- a/drivers/thermal/Kconfig
+++ b/drivers/thermal/Kconfig
@@ -345,7 +345,7 @@ source "drivers/thermal/ti-soc-thermal/Kconfig"
 endmenu
 
 menu "Samsung thermal drivers"
-depends on ARCH_EXYNOS
+depends on ARCH_EXYNOS || COMPILE_TEST
 source "drivers/thermal/samsung/Kconfig"
 endmenu
 
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCHv2 08/10] thermal: qcom_spmi: allow compile test
  2015-09-14  2:31 [PATCHv2 00/10] thermal: add COMPILE_TEST (on drivers) Eduardo Valentin
                   ` (6 preceding siblings ...)
  2015-09-14  2:31 ` [PATCHv2 07/10] thermal: exynos: " Eduardo Valentin
@ 2015-09-14  2:31 ` Eduardo Valentin
  2015-09-14  2:31 ` [PATCHv2 09/10] thermal: ti-soc: " Eduardo Valentin
  2015-09-14  2:31 ` [PATCHv2 10/10] thermal: ti-soc: Kconfig fix to avoid menu showing wrongly Eduardo Valentin
  9 siblings, 0 replies; 11+ messages in thread
From: Eduardo Valentin @ 2015-09-14  2:31 UTC (permalink / raw)
  To: Rui Zhang; +Cc: LKML, Linux PM, Eduardo Valentin

Adding COMPILE_TEST flag to qcom_spmi driver to facilitate
maintenance.

Cc: Zhang Rui <rui.zhang@intel.com>
Cc: linux-pm@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
---
 drivers/thermal/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig
index 202905e8..63b46c0 100644
--- a/drivers/thermal/Kconfig
+++ b/drivers/thermal/Kconfig
@@ -356,7 +356,7 @@ endmenu
 
 config QCOM_SPMI_TEMP_ALARM
 	tristate "Qualcomm SPMI PMIC Temperature Alarm"
-	depends on OF && SPMI && IIO
+	depends on OF && (SPMI || COMPILE_TEST) && IIO
 	select REGMAP_SPMI
 	help
 	  This enables a thermal sysfs driver for Qualcomm plug-and-play (QPNP)
-- 
2.5.0

^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCHv2 09/10] thermal: ti-soc: allow compile test
  2015-09-14  2:31 [PATCHv2 00/10] thermal: add COMPILE_TEST (on drivers) Eduardo Valentin
                   ` (7 preceding siblings ...)
  2015-09-14  2:31 ` [PATCHv2 08/10] thermal: qcom_spmi: " Eduardo Valentin
@ 2015-09-14  2:31 ` Eduardo Valentin
  2015-09-14  2:31 ` [PATCHv2 10/10] thermal: ti-soc: Kconfig fix to avoid menu showing wrongly Eduardo Valentin
  9 siblings, 0 replies; 11+ messages in thread
From: Eduardo Valentin @ 2015-09-14  2:31 UTC (permalink / raw)
  To: Rui Zhang; +Cc: LKML, Linux PM, Eduardo Valentin, linux-omap

Adding COMPILE_TEST flag to ti-soc driver to facilitate
maintenance.

Cc: Zhang Rui <rui.zhang@intel.com>
Cc: linux-pm@vger.kernel.org
Cc: linux-omap@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
---
 drivers/thermal/ti-soc-thermal/Kconfig | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/drivers/thermal/ti-soc-thermal/Kconfig b/drivers/thermal/ti-soc-thermal/Kconfig
index bd4c7be..7a24018 100644
--- a/drivers/thermal/ti-soc-thermal/Kconfig
+++ b/drivers/thermal/ti-soc-thermal/Kconfig
@@ -1,7 +1,7 @@
 config TI_SOC_THERMAL
 	tristate "Texas Instruments SoCs temperature sensor driver"
 	depends on THERMAL
-	depends on ARCH_HAS_BANDGAP
+	depends on ARCH_HAS_BANDGAP || COMPILE_TEST
 	help
 	  If you say yes here you get support for the Texas Instruments
 	  OMAP4460+ on die bandgap temperature sensor support. The register
@@ -24,7 +24,7 @@ config TI_THERMAL
 config OMAP4_THERMAL
 	bool "Texas Instruments OMAP4 thermal support"
 	depends on TI_SOC_THERMAL
-	depends on ARCH_OMAP4
+	depends on ARCH_OMAP4 || COMPILE_TEST
 	help
 	  If you say yes here you get thermal support for the Texas Instruments
 	  OMAP4 SoC family. The current chip supported are:
@@ -38,7 +38,7 @@ config OMAP4_THERMAL
 config OMAP5_THERMAL
 	bool "Texas Instruments OMAP5 thermal support"
 	depends on TI_SOC_THERMAL
-	depends on SOC_OMAP5
+	depends on SOC_OMAP5 || COMPILE_TEST
 	help
 	  If you say yes here you get thermal support for the Texas Instruments
 	  OMAP5 SoC family. The current chip supported are:
@@ -50,7 +50,7 @@ config OMAP5_THERMAL
 config DRA752_THERMAL
 	bool "Texas Instruments DRA752 thermal support"
 	depends on TI_SOC_THERMAL
-	depends on SOC_DRA7XX
+	depends on SOC_DRA7XX || COMPILE_TEST
 	help
 	  If you say yes here you get thermal support for the Texas Instruments
 	  DRA752 SoC family. The current chip supported are:
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCHv2 10/10] thermal: ti-soc: Kconfig fix to avoid menu showing wrongly
  2015-09-14  2:31 [PATCHv2 00/10] thermal: add COMPILE_TEST (on drivers) Eduardo Valentin
                   ` (8 preceding siblings ...)
  2015-09-14  2:31 ` [PATCHv2 09/10] thermal: ti-soc: " Eduardo Valentin
@ 2015-09-14  2:31 ` Eduardo Valentin
  9 siblings, 0 replies; 11+ messages in thread
From: Eduardo Valentin @ 2015-09-14  2:31 UTC (permalink / raw)
  To: Rui Zhang; +Cc: LKML, Linux PM, Eduardo Valentin, linux-omap

Move the dependencies to menu, so we avoid showing it wrongly.

Cc: Zhang Rui <rui.zhang@intel.com>
Cc: linux-pm@vger.kernel.org
Cc: linux-omap@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Signed-off-by: Eduardo Valentin <edubezval@gmail.com>
---
 drivers/thermal/Kconfig                | 1 +
 drivers/thermal/ti-soc-thermal/Kconfig | 2 --
 2 files changed, 1 insertion(+), 2 deletions(-)

diff --git a/drivers/thermal/Kconfig b/drivers/thermal/Kconfig
index 63b46c0..9453553 100644
--- a/drivers/thermal/Kconfig
+++ b/drivers/thermal/Kconfig
@@ -341,6 +341,7 @@ config ACPI_THERMAL_REL
 	depends on ACPI
 
 menu "Texas Instruments thermal drivers"
+depends on ARCH_HAS_BANDGAP || COMPILE_TEST
 source "drivers/thermal/ti-soc-thermal/Kconfig"
 endmenu
 
diff --git a/drivers/thermal/ti-soc-thermal/Kconfig b/drivers/thermal/ti-soc-thermal/Kconfig
index 7a24018..cb6686f 100644
--- a/drivers/thermal/ti-soc-thermal/Kconfig
+++ b/drivers/thermal/ti-soc-thermal/Kconfig
@@ -1,7 +1,5 @@
 config TI_SOC_THERMAL
 	tristate "Texas Instruments SoCs temperature sensor driver"
-	depends on THERMAL
-	depends on ARCH_HAS_BANDGAP || COMPILE_TEST
 	help
 	  If you say yes here you get support for the Texas Instruments
 	  OMAP4460+ on die bandgap temperature sensor support. The register
-- 
2.5.0


^ permalink raw reply related	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2015-09-14  2:32 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-14  2:31 [PATCHv2 00/10] thermal: add COMPILE_TEST (on drivers) Eduardo Valentin
2015-09-14  2:31 ` [PATCHv2 01/10] thermal: hisi: allow compile test Eduardo Valentin
2015-09-14  2:31 ` [PATCHv2 02/10] thermal: spear: " Eduardo Valentin
     [not found] ` <1442197899-5952-1-git-send-email-edubezval-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
2015-09-14  2:31   ` [PATCHv2 03/10] thermal: rockchip: " Eduardo Valentin
2015-09-14  2:31 ` [PATCHv2 04/10] thermal: kirkwood: " Eduardo Valentin
2015-09-14  2:31 ` [PATCHv2 05/10] thermal: dove: " Eduardo Valentin
2015-09-14  2:31 ` [PATCHv2 06/10] thermal: armada: " Eduardo Valentin
2015-09-14  2:31 ` [PATCHv2 07/10] thermal: exynos: " Eduardo Valentin
2015-09-14  2:31 ` [PATCHv2 08/10] thermal: qcom_spmi: " Eduardo Valentin
2015-09-14  2:31 ` [PATCHv2 09/10] thermal: ti-soc: " Eduardo Valentin
2015-09-14  2:31 ` [PATCHv2 10/10] thermal: ti-soc: Kconfig fix to avoid menu showing wrongly Eduardo Valentin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).