public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH -next] platform/x86/acerhdf: still depends on THERMAL
@ 2014-12-15 17:00 Randy Dunlap
  2014-12-15 17:10 ` Peter Feuerer
  2014-12-15 17:33 ` Darren Hart
  0 siblings, 2 replies; 3+ messages in thread
From: Randy Dunlap @ 2014-12-15 17:00 UTC (permalink / raw)
  To: Platform Driver, Darren Hart; +Cc: LKML, Peter Feuerer

From: Randy Dunlap <rdunlap@infradead.org>

acerhdf uses thermal interfaces so it should depend on THERMAL.
It also should not select a thermal driver without checking that
THERMAL is enabled.

This fixes the following build errors when THERMAL=m and
ACERHDF=y.

drivers/built-in.o: In function `acerhdf_set_mode':
acerhdf.c:(.text+0x3e02e1): undefined reference to `thermal_zone_device_update'
drivers/built-in.o: In function `acerhdf_unbind':
acerhdf.c:(.text+0x3e052d): undefined reference to `thermal_zone_unbind_cooling_device'
drivers/built-in.o: In function `acerhdf_bind':
acerhdf.c:(.text+0x3e0593): undefined reference to `thermal_zone_bind_cooling_device'
drivers/built-in.o: In function `acerhdf_init':
acerhdf.c:(.init.text+0x1c2f5): undefined reference to `thermal_cooling_device_register'
acerhdf.c:(.init.text+0x1c360): undefined reference to `thermal_zone_device_register'
drivers/built-in.o: In function `acerhdf_unregister_thermal':
acerhdf.c:(.text.unlikely+0x3c67): undefined reference to `thermal_cooling_device_unregister'
acerhdf.c:(.text.unlikely+0x3c91): undefined reference to `thermal_zone_device_unregister'

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Peter Feuerer <peter@piie.net>
Cc: Darren Hart <dvhart@infradead.org>
---
 drivers/platform/x86/Kconfig |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- linux-next-20141215.orig/drivers/platform/x86/Kconfig
+++ linux-next-20141215/drivers/platform/x86/Kconfig
@@ -38,8 +38,8 @@ config ACER_WMI
 
 config ACERHDF
 	tristate "Acer Aspire One temperature and fan driver"
+	depends on ACPI && THERMAL
 	select THERMAL_GOV_BANG_BANG
-	depends on ACPI
 	---help---
 	  This is a driver for Acer Aspire One netbooks. It allows to access
 	  the temperature sensor and to control the fan.

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

* Re: [PATCH -next] platform/x86/acerhdf: still depends on THERMAL
  2014-12-15 17:00 [PATCH -next] platform/x86/acerhdf: still depends on THERMAL Randy Dunlap
@ 2014-12-15 17:10 ` Peter Feuerer
  2014-12-15 17:33 ` Darren Hart
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Feuerer @ 2014-12-15 17:10 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: Platform Driver, Darren Hart, LKML

Randy Dunlap writes:

> From: Randy Dunlap <rdunlap@infradead.org>
> 
> acerhdf uses thermal interfaces so it should depend on THERMAL.
> It also should not select a thermal driver without checking that
> THERMAL is enabled.
> 
> This fixes the following build errors when THERMAL=m and
> ACERHDF=y.
> 
> drivers/built-in.o: In function `acerhdf_set_mode':
> acerhdf.c:(.text+0x3e02e1): undefined reference to `thermal_zone_device_update'
> drivers/built-in.o: In function `acerhdf_unbind':
> acerhdf.c:(.text+0x3e052d): undefined reference to `thermal_zone_unbind_cooling_device'
> drivers/built-in.o: In function `acerhdf_bind':
> acerhdf.c:(.text+0x3e0593): undefined reference to `thermal_zone_bind_cooling_device'
> drivers/built-in.o: In function `acerhdf_init':
> acerhdf.c:(.init.text+0x1c2f5): undefined reference to `thermal_cooling_device_register'
> acerhdf.c:(.init.text+0x1c360): undefined reference to `thermal_zone_device_register'
> drivers/built-in.o: In function `acerhdf_unregister_thermal':
> acerhdf.c:(.text.unlikely+0x3c67): undefined reference to `thermal_cooling_device_unregister'
> acerhdf.c:(.text.unlikely+0x3c91): undefined reference to `thermal_zone_device_unregister'
> 
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Peter Feuerer <peter@piie.net>
> Cc: Darren Hart <dvhart@infradead.org>
> ---
>  drivers/platform/x86/Kconfig |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> --- linux-next-20141215.orig/drivers/platform/x86/Kconfig
> +++ linux-next-20141215/drivers/platform/x86/Kconfig
> @@ -38,8 +38,8 @@ config ACER_WMI
>  
>  config ACERHDF
>  	tristate "Acer Aspire One temperature and fan driver"
> +	depends on ACPI && THERMAL
>  	select THERMAL_GOV_BANG_BANG
> -	depends on ACPI
>  	---help---
>  	  This is a driver for Acer Aspire One netbooks. It allows to access
>  	  the temperature sensor and to control the fan.


Acked-by: Peter Feuerer <peter@piie.net>

Thanks.

--peter;

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

* Re: [PATCH -next] platform/x86/acerhdf: still depends on THERMAL
  2014-12-15 17:00 [PATCH -next] platform/x86/acerhdf: still depends on THERMAL Randy Dunlap
  2014-12-15 17:10 ` Peter Feuerer
@ 2014-12-15 17:33 ` Darren Hart
  1 sibling, 0 replies; 3+ messages in thread
From: Darren Hart @ 2014-12-15 17:33 UTC (permalink / raw)
  To: Randy Dunlap; +Cc: Platform Driver, LKML, Peter Feuerer

On Mon, Dec 15, 2014 at 09:00:13AM -0800, Randy Dunlap wrote:
> From: Randy Dunlap <rdunlap@infradead.org>
> 
> acerhdf uses thermal interfaces so it should depend on THERMAL.
> It also should not select a thermal driver without checking that
> THERMAL is enabled.
> 
> This fixes the following build errors when THERMAL=m and
> ACERHDF=y.

Thank you Randy, I'll include this in my pull request later this week. Now in
for-next.

-- 
Darren Hart
Intel Open Source Technology Center

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

end of thread, other threads:[~2014-12-15 17:39 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-12-15 17:00 [PATCH -next] platform/x86/acerhdf: still depends on THERMAL Randy Dunlap
2014-12-15 17:10 ` Peter Feuerer
2014-12-15 17:33 ` Darren Hart

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox