* [PATCH 1/6] thermal: add the support for building the generic thermal as a module
@ 2008-04-10 8:11 Zhang, Rui
2008-04-16 7:59 ` Jean Delvare
0 siblings, 1 reply; 6+ messages in thread
From: Zhang, Rui @ 2008-04-10 8:11 UTC (permalink / raw)
To: Len Brown; +Cc: Jean Delvare, Hans de Goede, linux-acpi
Build the generic thermal driver as module "thermal_sys".
Make ACPI thermal, video, processor and fan SELECT the generic
thermal driver, as these drivers rely on it to build the sysfs I/F.
Signed-off-by: Zhang Rui <rui.zhang@intel.com>
---
drivers/acpi/Kconfig | 4 +++-
drivers/thermal/Kconfig | 4 ++--
drivers/thermal/Makefile | 3 ++-
drivers/thermal/thermal.c | 2 +-
include/linux/thermal.h | 14 --------------
5 files changed, 8 insertions(+), 19 deletions(-)
Index: linux-2.6/drivers/thermal/Kconfig
===================================================================
--- linux-2.6.orig/drivers/thermal/Kconfig
+++ linux-2.6/drivers/thermal/Kconfig
@@ -3,7 +3,7 @@
#
menuconfig THERMAL
- bool "Generic Thermal sysfs driver"
+ tristate "Generic Thermal sysfs driver"
help
Generic Thermal Sysfs driver offers a generic mechanism for
thermal management. Usually it's made up of one or more thermal
@@ -11,4 +11,4 @@ menuconfig THERMAL
Each thermal zone contains its own temperature, trip points,
cooling devices.
All platforms with ACPI thermal support can use this driver.
- If you want this support, you should say Y here.
+ If you want this support, you should say Y or M here.
Index: linux-2.6/drivers/thermal/thermal.c
===================================================================
--- linux-2.6.orig/drivers/thermal/thermal.c
+++ linux-2.6/drivers/thermal/thermal.c
@@ -31,7 +31,7 @@
#include <linux/thermal.h>
#include <linux/spinlock.h>
-MODULE_AUTHOR("Zhang Rui")
+MODULE_AUTHOR("Zhang Rui");
MODULE_DESCRIPTION("Generic thermal management sysfs support");
MODULE_LICENSE("GPL");
Index: linux-2.6/drivers/thermal/Makefile
===================================================================
--- linux-2.6.orig/drivers/thermal/Makefile
+++ linux-2.6/drivers/thermal/Makefile
@@ -2,4 +2,5 @@
# Makefile for sensor chip drivers.
#
-obj-$(CONFIG_THERMAL) += thermal.o
+thermal_sys-objs += thermal.o
+obj-$(CONFIG_THERMAL) += thermal_sys.o
Index: linux-2.6/drivers/acpi/Kconfig
===================================================================
--- linux-2.6.orig/drivers/acpi/Kconfig
+++ linux-2.6/drivers/acpi/Kconfig
@@ -140,6 +140,7 @@ config ACPI_VIDEO
tristate "Video"
depends on X86 && BACKLIGHT_CLASS_DEVICE && VIDEO_OUTPUT_CONTROL
depends on INPUT
+ select THERMAL
help
This driver implement the ACPI Extensions For Display Adapters
for integrated graphics devices on motherboard, as specified in
@@ -151,6 +152,7 @@ config ACPI_VIDEO
config ACPI_FAN
tristate "Fan"
+ select THERMAL
default y
help
This driver adds support for ACPI fan devices, allowing user-mode
@@ -172,6 +174,7 @@ config ACPI_BAY
config ACPI_PROCESSOR
tristate "Processor"
+ select THERMAL
default y
help
This driver installs ACPI as the idle handler for Linux, and uses
@@ -188,7 +191,6 @@ config ACPI_HOTPLUG_CPU
config ACPI_THERMAL
tristate "Thermal Zone"
depends on ACPI_PROCESSOR
- select THERMAL
default y
help
This driver adds support for ACPI thermal zones. Most mobile and
Index: linux-2.6/include/linux/thermal.h
===================================================================
--- linux-2.6.orig/include/linux/thermal.h
+++ linux-2.6/include/linux/thermal.h
@@ -88,24 +88,10 @@ int thermal_zone_bind_cooling_device(str
struct thermal_cooling_device *);
int thermal_zone_unbind_cooling_device(struct thermal_zone_device *, int,
struct thermal_cooling_device *);
-
-#ifdef CONFIG_THERMAL
struct thermal_cooling_device *thermal_cooling_device_register(char *, void *,
struct
thermal_cooling_device_ops
*);
void thermal_cooling_device_unregister(struct thermal_cooling_device *);
-#else
-static inline struct thermal_cooling_device
-*thermal_cooling_device_register(char *c, void *v,
- struct thermal_cooling_device_ops *t)
-{
- return NULL;
-}
-static inline
- void thermal_cooling_device_unregister(struct thermal_cooling_device *t)
-{
-};
-#endif
#endif /* __THERMAL_H__ */
^ permalink raw reply [flat|nested] 6+ messages in thread* Re: [PATCH 1/6] thermal: add the support for building the generic thermal as a module 2008-04-10 8:11 [PATCH 1/6] thermal: add the support for building the generic thermal as a module Zhang, Rui @ 2008-04-16 7:59 ` Jean Delvare 2008-04-21 8:07 ` Zhang Rui 2008-04-29 7:15 ` Len Brown 0 siblings, 2 replies; 6+ messages in thread From: Jean Delvare @ 2008-04-16 7:59 UTC (permalink / raw) To: Zhang, Rui; +Cc: Len Brown, Hans de Goede, linux-acpi Hi Rui, On Thu, 10 Apr 2008 16:11:54 +0800, Zhang, Rui wrote: > Build the generic thermal driver as module "thermal_sys". > > Make ACPI thermal, video, processor and fan SELECT the generic > thermal driver, as these drivers rely on it to build the sysfs I/F. > > Signed-off-by: Zhang Rui <rui.zhang@intel.com> > --- > drivers/acpi/Kconfig | 4 +++- > drivers/thermal/Kconfig | 4 ++-- > drivers/thermal/Makefile | 3 ++- > drivers/thermal/thermal.c | 2 +- > include/linux/thermal.h | 14 -------------- > 5 files changed, 8 insertions(+), 19 deletions(-) > > Index: linux-2.6/drivers/thermal/Kconfig > =================================================================== > --- linux-2.6.orig/drivers/thermal/Kconfig > +++ linux-2.6/drivers/thermal/Kconfig > @@ -3,7 +3,7 @@ > # > > menuconfig THERMAL > - bool "Generic Thermal sysfs driver" > + tristate "Generic Thermal sysfs driver" > help > Generic Thermal Sysfs driver offers a generic mechanism for > thermal management. Usually it's made up of one or more thermal > @@ -11,4 +11,4 @@ menuconfig THERMAL > Each thermal zone contains its own temperature, trip points, > cooling devices. > All platforms with ACPI thermal support can use this driver. > - If you want this support, you should say Y here. > + If you want this support, you should say Y or M here. > Index: linux-2.6/drivers/thermal/thermal.c > =================================================================== > --- linux-2.6.orig/drivers/thermal/thermal.c > +++ linux-2.6/drivers/thermal/thermal.c > @@ -31,7 +31,7 @@ > #include <linux/thermal.h> > #include <linux/spinlock.h> > > -MODULE_AUTHOR("Zhang Rui") > +MODULE_AUTHOR("Zhang Rui"); > MODULE_DESCRIPTION("Generic thermal management sysfs support"); > MODULE_LICENSE("GPL"); > > Index: linux-2.6/drivers/thermal/Makefile > =================================================================== > --- linux-2.6.orig/drivers/thermal/Makefile > +++ linux-2.6/drivers/thermal/Makefile > @@ -2,4 +2,5 @@ > # Makefile for sensor chip drivers. > # > > -obj-$(CONFIG_THERMAL) += thermal.o > +thermal_sys-objs += thermal.o > +obj-$(CONFIG_THERMAL) += thermal_sys.o > Index: linux-2.6/drivers/acpi/Kconfig > =================================================================== > --- linux-2.6.orig/drivers/acpi/Kconfig > +++ linux-2.6/drivers/acpi/Kconfig > @@ -140,6 +140,7 @@ config ACPI_VIDEO > tristate "Video" > depends on X86 && BACKLIGHT_CLASS_DEVICE && VIDEO_OUTPUT_CONTROL > depends on INPUT > + select THERMAL > help > This driver implement the ACPI Extensions For Display Adapters > for integrated graphics devices on motherboard, as specified in > @@ -151,6 +152,7 @@ config ACPI_VIDEO > > config ACPI_FAN > tristate "Fan" > + select THERMAL > default y > help > This driver adds support for ACPI fan devices, allowing user-mode > @@ -172,6 +174,7 @@ config ACPI_BAY > > config ACPI_PROCESSOR > tristate "Processor" > + select THERMAL > default y > help > This driver installs ACPI as the idle handler for Linux, and uses > @@ -188,7 +191,6 @@ config ACPI_HOTPLUG_CPU > config ACPI_THERMAL > tristate "Thermal Zone" > depends on ACPI_PROCESSOR > - select THERMAL > default y > help > This driver adds support for ACPI thermal zones. Most mobile and I wouldn't remove this select. I agree it's not strictly needed right now because ACPI_THERMAL depends on ACPI_PROCESSOR and ACPI_PROCESSOR now selects THERMAL, but relying on "inherited" selects that way could break in the future, and is also not obvious for people not familiar with the code. Likewise, I am a little worried that drivers/misc/intel_menlow.c needs THERMAL but doesn't select it. It works because it depends on ACPI_THERMAL which depends on ACPI_PROCESSOR which itself selects THERMAL, but that's again a (2nd order) indirect select which isn't obvious to the newcomer and could break in the future if dependencies change. I'd rather have each driver select what it needs regardless of inherited selects. > Index: linux-2.6/include/linux/thermal.h > =================================================================== > --- linux-2.6.orig/include/linux/thermal.h > +++ linux-2.6/include/linux/thermal.h > @@ -88,24 +88,10 @@ int thermal_zone_bind_cooling_device(str > struct thermal_cooling_device *); > int thermal_zone_unbind_cooling_device(struct thermal_zone_device *, int, > struct thermal_cooling_device *); > - > -#ifdef CONFIG_THERMAL > struct thermal_cooling_device *thermal_cooling_device_register(char *, void *, > struct > thermal_cooling_device_ops > *); > void thermal_cooling_device_unregister(struct thermal_cooling_device *); > -#else > -static inline struct thermal_cooling_device > -*thermal_cooling_device_register(char *c, void *v, > - struct thermal_cooling_device_ops *t) > -{ > - return NULL; > -} > -static inline > - void thermal_cooling_device_unregister(struct thermal_cooling_device *t) > -{ > -}; > -#endif > > #endif /* __THERMAL_H__ */ > > Other than that, this patch looks OK to me (except that I'd like to see drivers/thermal/thermal.c renamed to drivers/thermal/thermal_sys.c - but that's something for Len in git.) -- Jean Delvare ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/6] thermal: add the support for building the generic thermal as a module 2008-04-16 7:59 ` Jean Delvare @ 2008-04-21 8:07 ` Zhang Rui 2008-04-21 9:15 ` Jean Delvare 2008-04-29 7:15 ` Len Brown 1 sibling, 1 reply; 6+ messages in thread From: Zhang Rui @ 2008-04-21 8:07 UTC (permalink / raw) To: Jean Delvare; +Cc: Len Brown, Hans de Goede, linux-acpi On Wed, 2008-04-16 at 15:59 +0800, Jean Delvare wrote: > Hi Rui, > > On Thu, 10 Apr 2008 16:11:54 +0800, Zhang, Rui wrote: > > Build the generic thermal driver as module "thermal_sys". > > > > Make ACPI thermal, video, processor and fan SELECT the generic > > thermal driver, as these drivers rely on it to build the sysfs I/F. > > > > Signed-off-by: Zhang Rui <rui.zhang@intel.com> > > --- > > drivers/acpi/Kconfig | 4 +++- > > drivers/thermal/Kconfig | 4 ++-- > > drivers/thermal/Makefile | 3 ++- > > drivers/thermal/thermal.c | 2 +- > > include/linux/thermal.h | 14 -------------- > > 5 files changed, 8 insertions(+), 19 deletions(-) > > > > Index: linux-2.6/drivers/thermal/Kconfig > > =================================================================== > > --- linux-2.6.orig/drivers/thermal/Kconfig > > +++ linux-2.6/drivers/thermal/Kconfig > > @@ -3,7 +3,7 @@ > > # > > > > menuconfig THERMAL > > - bool "Generic Thermal sysfs driver" > > + tristate "Generic Thermal sysfs driver" > > help > > Generic Thermal Sysfs driver offers a generic mechanism for > > thermal management. Usually it's made up of one or more > thermal > > @@ -11,4 +11,4 @@ menuconfig THERMAL > > Each thermal zone contains its own temperature, trip points, > > cooling devices. > > All platforms with ACPI thermal support can use this driver. > > - If you want this support, you should say Y here. > > + If you want this support, you should say Y or M here. > > Index: linux-2.6/drivers/thermal/thermal.c > > =================================================================== > > --- linux-2.6.orig/drivers/thermal/thermal.c > > +++ linux-2.6/drivers/thermal/thermal.c > > @@ -31,7 +31,7 @@ > > #include <linux/thermal.h> > > #include <linux/spinlock.h> > > > > -MODULE_AUTHOR("Zhang Rui") > > +MODULE_AUTHOR("Zhang Rui"); > > MODULE_DESCRIPTION("Generic thermal management sysfs support"); > > MODULE_LICENSE("GPL"); > > > > Index: linux-2.6/drivers/thermal/Makefile > > =================================================================== > > --- linux-2.6.orig/drivers/thermal/Makefile > > +++ linux-2.6/drivers/thermal/Makefile > > @@ -2,4 +2,5 @@ > > # Makefile for sensor chip drivers. > > # > > > > -obj-$(CONFIG_THERMAL) += thermal.o > > +thermal_sys-objs += thermal.o > > +obj-$(CONFIG_THERMAL) += thermal_sys.o > > Index: linux-2.6/drivers/acpi/Kconfig > > =================================================================== > > --- linux-2.6.orig/drivers/acpi/Kconfig > > +++ linux-2.6/drivers/acpi/Kconfig > > @@ -140,6 +140,7 @@ config ACPI_VIDEO > > tristate "Video" > > depends on X86 && BACKLIGHT_CLASS_DEVICE && > VIDEO_OUTPUT_CONTROL > > depends on INPUT > > + select THERMAL > > help > > This driver implement the ACPI Extensions For Display > Adapters > > for integrated graphics devices on motherboard, as specified > in > > @@ -151,6 +152,7 @@ config ACPI_VIDEO > > > > config ACPI_FAN > > tristate "Fan" > > + select THERMAL > > default y > > help > > This driver adds support for ACPI fan devices, allowing > user-mode > > @@ -172,6 +174,7 @@ config ACPI_BAY > > > > config ACPI_PROCESSOR > > tristate "Processor" > > + select THERMAL > > default y > > help > > This driver installs ACPI as the idle handler for Linux, and > uses > > @@ -188,7 +191,6 @@ config ACPI_HOTPLUG_CPU > > config ACPI_THERMAL > > tristate "Thermal Zone" > > depends on ACPI_PROCESSOR > > - select THERMAL > > default y > > help > > This driver adds support for ACPI thermal zones. Most > mobile and > > I wouldn't remove this select. I agree it's not strictly needed right > now because ACPI_THERMAL depends on ACPI_PROCESSOR and ACPI_PROCESSOR > now selects THERMAL, but relying on "inherited" selects that way could > break in the future, and is also not obvious for people not familiar > with the code. > > Likewise, I am a little worried that drivers/misc/intel_menlow.c needs > THERMAL but doesn't select it. It works because it depends on > ACPI_THERMAL which depends on ACPI_PROCESSOR which itself selects > THERMAL, but that's again a (2nd order) indirect select which isn't > obvious to the newcomer and could break in the future if dependencies > change. I'd rather have each driver select what it needs regardless of > inherited selects. Build the generic thermal driver as module "thermal_sys". Make ACPI thermal, video, processor and fan SELECT the generic thermal driver, as these drivers rely on it to build the sysfs I/F. Signed-off-by: Zhang Rui <rui.zhang@intel.com> --- drivers/acpi/Kconfig | 3 +++ drivers/misc/Kconfig | 1 + drivers/thermal/Kconfig | 4 ++-- drivers/thermal/Makefile | 3 ++- drivers/thermal/thermal.c | 2 +- include/linux/thermal.h | 14 -------------- 6 files changed, 9 insertions(+), 18 deletions(-) Index: old-git/drivers/thermal/Kconfig =================================================================== --- old-git.orig/drivers/thermal/Kconfig 2008-04-11 17:10:02.000000000 +0800 +++ old-git/drivers/thermal/Kconfig 2008-04-21 15:03:51.000000000 +0800 @@ -3,7 +3,7 @@ # menuconfig THERMAL - bool "Generic Thermal sysfs driver" + tristate "Generic Thermal sysfs driver" help Generic Thermal Sysfs driver offers a generic mechanism for thermal management. Usually it's made up of one or more thermal @@ -11,4 +11,4 @@ Each thermal zone contains its own temperature, trip points, cooling devices. All platforms with ACPI thermal support can use this driver. - If you want this support, you should say Y here. + If you want this support, you should say Y or M here. Index: old-git/drivers/thermal/thermal.c =================================================================== --- old-git.orig/drivers/thermal/thermal.c 2008-04-11 17:10:02.000000000 +0800 +++ old-git/drivers/thermal/thermal.c 2008-04-21 15:06:41.000000000 +0800 @@ -31,7 +31,7 @@ #include <linux/thermal.h> #include <linux/spinlock.h> -MODULE_AUTHOR("Zhang Rui") +MODULE_AUTHOR("Zhang Rui"); MODULE_DESCRIPTION("Generic thermal management sysfs support"); MODULE_LICENSE("GPL"); Index: old-git/drivers/thermal/Makefile =================================================================== --- old-git.orig/drivers/thermal/Makefile 2008-04-11 17:10:02.000000000 +0800 +++ old-git/drivers/thermal/Makefile 2008-04-21 15:03:51.000000000 +0800 @@ -2,4 +2,5 @@ # Makefile for sensor chip drivers. # -obj-$(CONFIG_THERMAL) += thermal.o +thermal_sys-objs += thermal.o +obj-$(CONFIG_THERMAL) += thermal_sys.o Index: old-git/drivers/acpi/Kconfig =================================================================== --- old-git.orig/drivers/acpi/Kconfig 2008-04-11 17:09:47.000000000 +0800 +++ old-git/drivers/acpi/Kconfig 2008-04-21 15:07:03.000000000 +0800 @@ -140,6 +140,7 @@ tristate "Video" depends on X86 && BACKLIGHT_CLASS_DEVICE && VIDEO_OUTPUT_CONTROL depends on INPUT + select THERMAL help This driver implement the ACPI Extensions For Display Adapters for integrated graphics devices on motherboard, as specified in @@ -151,6 +152,7 @@ config ACPI_FAN tristate "Fan" + select THERMAL default y help This driver adds support for ACPI fan devices, allowing user-mode @@ -172,6 +174,7 @@ config ACPI_PROCESSOR tristate "Processor" + select THERMAL default y help This driver installs ACPI as the idle handler for Linux, and uses Index: old-git/include/linux/thermal.h =================================================================== --- old-git.orig/include/linux/thermal.h 2008-04-11 17:10:10.000000000 +0800 +++ old-git/include/linux/thermal.h 2008-04-21 15:06:42.000000000 +0800 @@ -88,24 +88,10 @@ struct thermal_cooling_device *); int thermal_zone_unbind_cooling_device(struct thermal_zone_device *, int, struct thermal_cooling_device *); - -#ifdef CONFIG_THERMAL struct thermal_cooling_device *thermal_cooling_device_register(char *, void *, struct thermal_cooling_device_ops *); void thermal_cooling_device_unregister(struct thermal_cooling_device *); -#else -static inline struct thermal_cooling_device -*thermal_cooling_device_register(char *c, void *v, - struct thermal_cooling_device_ops *t) -{ - return NULL; -} -static inline - void thermal_cooling_device_unregister(struct thermal_cooling_device *t) -{ -}; -#endif #endif /* __THERMAL_H__ */ Index: old-git/drivers/misc/Kconfig =================================================================== --- old-git.orig/drivers/misc/Kconfig 2008-04-11 17:09:55.000000000 +0800 +++ old-git/drivers/misc/Kconfig 2008-04-21 15:07:30.000000000 +0800 @@ -311,6 +311,7 @@ config INTEL_MENLOW tristate "Thermal Management driver for Intel menlow platform" depends on ACPI_THERMAL + select THERMAL depends on X86 ---help--- ACPI thermal management enhancement driver on ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/6] thermal: add the support for building the generic thermal as a module 2008-04-21 8:07 ` Zhang Rui @ 2008-04-21 9:15 ` Jean Delvare 2008-04-29 7:16 ` Len Brown 0 siblings, 1 reply; 6+ messages in thread From: Jean Delvare @ 2008-04-21 9:15 UTC (permalink / raw) To: Zhang Rui; +Cc: Len Brown, Hans de Goede, linux-acpi On Mon, 21 Apr 2008 16:07:13 +0800, Zhang Rui wrote: > Build the generic thermal driver as module "thermal_sys". > > Make ACPI thermal, video, processor and fan SELECT the generic > thermal driver, as these drivers rely on it to build the sysfs I/F. > > Signed-off-by: Zhang Rui <rui.zhang@intel.com> > --- > drivers/acpi/Kconfig | 3 +++ > drivers/misc/Kconfig | 1 + > drivers/thermal/Kconfig | 4 ++-- > drivers/thermal/Makefile | 3 ++- > drivers/thermal/thermal.c | 2 +- > include/linux/thermal.h | 14 -------------- > 6 files changed, 9 insertions(+), 18 deletions(-) Acked-by: Jean Delvare <khali@linux-fr.org> -- Jean Delvare ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/6] thermal: add the support for building the generic thermal as a module 2008-04-21 9:15 ` Jean Delvare @ 2008-04-29 7:16 ` Len Brown 0 siblings, 0 replies; 6+ messages in thread From: Len Brown @ 2008-04-29 7:16 UTC (permalink / raw) To: Jean Delvare; +Cc: Zhang Rui, Hans de Goede, linux-acpi On Monday 21 April 2008, Jean Delvare wrote: > Acked-by: Jean Delvare <khali@linux-fr.org> applied. thanks, -len ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH 1/6] thermal: add the support for building the generic thermal as a module 2008-04-16 7:59 ` Jean Delvare 2008-04-21 8:07 ` Zhang Rui @ 2008-04-29 7:15 ` Len Brown 1 sibling, 0 replies; 6+ messages in thread From: Len Brown @ 2008-04-29 7:15 UTC (permalink / raw) To: Jean Delvare; +Cc: Zhang, Rui, Hans de Goede, linux-acpi On Wednesday 16 April 2008, Jean Delvare wrote: > I'd like to see > drivers/thermal/thermal.c renamed to drivers/thermal/thermal_sys.c - > but that's something for Len in git.) >From ff16cab69b6ed621686cf342306785175775152d Mon Sep 17 00:00:00 2001 From: Len Brown <len.brown@intel.com> Date: Tue, 29 Apr 2008 03:12:17 -0400 Subject: [PATCH] thermal: re-name thermal.c to thermal_sys.c Organization: Intel Open Source Technology Center thermal_sys was already the name of the resulting module, and it is built from this one source file. Signed-off-by: Len Brown <len.brown@intel.com> --- drivers/thermal/Makefile | 1 - drivers/thermal/{thermal.c => thermal_sys.c} | 0 2 files changed, 0 insertions(+), 1 deletions(-) rename drivers/thermal/{thermal.c => thermal_sys.c} (100%) diff --git a/drivers/thermal/Makefile b/drivers/thermal/Makefile index 02b6451..31108a0 100644 --- a/drivers/thermal/Makefile +++ b/drivers/thermal/Makefile @@ -2,5 +2,4 @@ # Makefile for sensor chip drivers. # -thermal_sys-objs += thermal.o obj-$(CONFIG_THERMAL) += thermal_sys.o diff --git a/drivers/thermal/thermal.c b/drivers/thermal/thermal_sys.c similarity index 100% rename from drivers/thermal/thermal.c rename to drivers/thermal/thermal_sys.c -- 1.5.5.1.99.gf0ec4 ^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2008-04-29 7:16 UTC | newest] Thread overview: 6+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2008-04-10 8:11 [PATCH 1/6] thermal: add the support for building the generic thermal as a module Zhang, Rui 2008-04-16 7:59 ` Jean Delvare 2008-04-21 8:07 ` Zhang Rui 2008-04-21 9:15 ` Jean Delvare 2008-04-29 7:16 ` Len Brown 2008-04-29 7:15 ` Len Brown
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox