From: Dmitry Torokhov <dmitry.torokhov@gmail.com>
To: Chen-Yu Tsai <wens@csie.org>
Cc: Hans de Goede <hdegoede@redhat.com>,
Arnd Bergmann <arnd@arndb.de>,
linux-input@vger.kernel.org,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v2] Input: sun4i-ts: add thermal driver dependency
Date: Wed, 25 Feb 2015 17:28:47 -0800 [thread overview]
Message-ID: <20150226012847.GD25965@dtor-ws> (raw)
In-Reply-To: <1423728011-30272-1-git-send-email-wens@csie.org>
On Thu, Feb 12, 2015 at 04:00:11PM +0800, Chen-Yu Tsai wrote:
> From: Arnd Bergmann <arnd@arndb.de>
>
> The sun4i-ts driver has had a dependency on the thermal code
> with the addition of the thermal zone sensor support, but this
> is not currently enforced in Kconfig, so with TOUCHSCREEN_SUN4I=y,
> THERMAL=m and THERMAL_OF=y we get
>
> drivers/built-in.o: In function `sun4i_ts_remove':
> :(.text+0x2376f4): undefined reference to `thermal_zone_of_sensor_unregister'
> drivers/built-in.o: In function `sun4i_ts_probe':
> :(.text+0x237a94): undefined reference to `thermal_zone_of_sensor_register'
> :(.text+0x237c00): undefined reference to `thermal_zone_of_sensor_unregister'
>
> We need the dependency on THERMAL in order to ensure that this
> driver becomes a loadable module if the thermal support itself
> is modular, while the dependency on THERMAL_OF is a runtime
> dependency and the driver will still build if it is missing.
> It is entirely possible to build sun4i-ts without THERMAL_OF
> just to use the hwmon sensors and/or touchscreen.
>
> Fixes: 223697107949 ("Input: sun4i-ts - add thermal zone sensor support")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> [wens@csie.org: Fix description and Kconfig dependencies]
> Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Applied, thank you.
> ---
>
> v2 updates the Kconfig dependencies as Dmitry pointed out, and makes
> the description be more specific on the failing config and why a
> dependency on THERMAL_OF is not required. The failing commit hash
> is also updated.
>
> ---
> drivers/input/touchscreen/Kconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/input/touchscreen/Kconfig b/drivers/input/touchscreen/Kconfig
> index 58917525126e..6261fd6d7c3c 100644
> --- a/drivers/input/touchscreen/Kconfig
> +++ b/drivers/input/touchscreen/Kconfig
> @@ -943,6 +943,7 @@ config TOUCHSCREEN_SUN4I
> tristate "Allwinner sun4i resistive touchscreen controller support"
> depends on ARCH_SUNXI || COMPILE_TEST
> depends on HWMON
> + depends on THERMAL || !THERMAL_OF
> help
> This selects support for the resistive touchscreen controller
> found on Allwinner sunxi SoCs.
> --
> 2.1.4
>
--
Dmitry
WARNING: multiple messages have this Message-ID (diff)
From: dmitry.torokhov@gmail.com (Dmitry Torokhov)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2] Input: sun4i-ts: add thermal driver dependency
Date: Wed, 25 Feb 2015 17:28:47 -0800 [thread overview]
Message-ID: <20150226012847.GD25965@dtor-ws> (raw)
In-Reply-To: <1423728011-30272-1-git-send-email-wens@csie.org>
On Thu, Feb 12, 2015 at 04:00:11PM +0800, Chen-Yu Tsai wrote:
> From: Arnd Bergmann <arnd@arndb.de>
>
> The sun4i-ts driver has had a dependency on the thermal code
> with the addition of the thermal zone sensor support, but this
> is not currently enforced in Kconfig, so with TOUCHSCREEN_SUN4I=y,
> THERMAL=m and THERMAL_OF=y we get
>
> drivers/built-in.o: In function `sun4i_ts_remove':
> :(.text+0x2376f4): undefined reference to `thermal_zone_of_sensor_unregister'
> drivers/built-in.o: In function `sun4i_ts_probe':
> :(.text+0x237a94): undefined reference to `thermal_zone_of_sensor_register'
> :(.text+0x237c00): undefined reference to `thermal_zone_of_sensor_unregister'
>
> We need the dependency on THERMAL in order to ensure that this
> driver becomes a loadable module if the thermal support itself
> is modular, while the dependency on THERMAL_OF is a runtime
> dependency and the driver will still build if it is missing.
> It is entirely possible to build sun4i-ts without THERMAL_OF
> just to use the hwmon sensors and/or touchscreen.
>
> Fixes: 223697107949 ("Input: sun4i-ts - add thermal zone sensor support")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
> [wens at csie.org: Fix description and Kconfig dependencies]
> Signed-off-by: Chen-Yu Tsai <wens@csie.org>
Applied, thank you.
> ---
>
> v2 updates the Kconfig dependencies as Dmitry pointed out, and makes
> the description be more specific on the failing config and why a
> dependency on THERMAL_OF is not required. The failing commit hash
> is also updated.
>
> ---
> drivers/input/touchscreen/Kconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/input/touchscreen/Kconfig b/drivers/input/touchscreen/Kconfig
> index 58917525126e..6261fd6d7c3c 100644
> --- a/drivers/input/touchscreen/Kconfig
> +++ b/drivers/input/touchscreen/Kconfig
> @@ -943,6 +943,7 @@ config TOUCHSCREEN_SUN4I
> tristate "Allwinner sun4i resistive touchscreen controller support"
> depends on ARCH_SUNXI || COMPILE_TEST
> depends on HWMON
> + depends on THERMAL || !THERMAL_OF
> help
> This selects support for the resistive touchscreen controller
> found on Allwinner sunxi SoCs.
> --
> 2.1.4
>
--
Dmitry
next prev parent reply other threads:[~2015-02-26 1:28 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-12 8:00 [PATCH v2] Input: sun4i-ts: add thermal driver dependency Chen-Yu Tsai
2015-02-12 8:00 ` Chen-Yu Tsai
2015-02-26 1:28 ` Dmitry Torokhov [this message]
2015-02-26 1:28 ` Dmitry Torokhov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20150226012847.GD25965@dtor-ws \
--to=dmitry.torokhov@gmail.com \
--cc=arnd@arndb.de \
--cc=hdegoede@redhat.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-input@vger.kernel.org \
--cc=wens@csie.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.