linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] platform/x86: silead depends on I2C being built-in
@ 2017-02-02 14:25 Arnd Bergmann
  2017-02-02 14:45 ` Hans de Goede
  0 siblings, 1 reply; 5+ messages in thread
From: Arnd Bergmann @ 2017-02-02 14:25 UTC (permalink / raw)
  To: Darren Hart, Andy Shevchenko
  Cc: Hans de Goede, Arnd Bergmann, platform-driver-x86, linux-kernel

The new driver cannot be a loadable module, so if I2C is loadable, we get this
link error:

drivers/platform/built-in.o: In function `silead_ts_dmi_init':
silead_dmi.c:(.init.text+0x2ef): undefined reference to `i2c_bus_type'

This makes the Kconfig dependency stricter to require I2C=y.

Fixes: 9eeda3897a85 ("platform/x86: add support for devices with Silead touchscreens")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
---
 drivers/platform/x86/Kconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
index dd4952ac8797..a7fe9b9f975d 100644
--- a/drivers/platform/x86/Kconfig
+++ b/drivers/platform/x86/Kconfig
@@ -1079,7 +1079,7 @@ config INTEL_TURBO_MAX_3
 
 config SILEAD_DMI
 	bool "Tablets with Silead touchscreens"
-	depends on ACPI && DMI && I2C && INPUT
+	depends on ACPI && DMI && I2C=y && INPUT
 	---help---
 	  Certain ACPI based tablets with Silead touchscreens do not have
 	  enough data in ACPI tables for the touchscreen driver to handle
-- 
2.9.0

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

* Re: [PATCH] platform/x86: silead depends on I2C being built-in
  2017-02-02 14:25 [PATCH] platform/x86: silead depends on I2C being built-in Arnd Bergmann
@ 2017-02-02 14:45 ` Hans de Goede
  2017-02-02 15:01   ` Andy Shevchenko
  0 siblings, 1 reply; 5+ messages in thread
From: Hans de Goede @ 2017-02-02 14:45 UTC (permalink / raw)
  To: Arnd Bergmann, Darren Hart, Andy Shevchenko
  Cc: platform-driver-x86, linux-kernel

Hi,

On 02-02-17 15:25, Arnd Bergmann wrote:
> The new driver cannot be a loadable module, so if I2C is loadable, we get this
> link error:
>
> drivers/platform/built-in.o: In function `silead_ts_dmi_init':
> silead_dmi.c:(.init.text+0x2ef): undefined reference to `i2c_bus_type'
>
> This makes the Kconfig dependency stricter to require I2C=y.
>
> Fixes: 9eeda3897a85 ("platform/x86: add support for devices with Silead touchscreens")
> Signed-off-by: Arnd Bergmann <arnd@arndb.de>

Thank you.

Acked-by: Hans de Goede <hdegoede@redhat.com>

Regards.

Hans


> ---
>  drivers/platform/x86/Kconfig | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
> index dd4952ac8797..a7fe9b9f975d 100644
> --- a/drivers/platform/x86/Kconfig
> +++ b/drivers/platform/x86/Kconfig
> @@ -1079,7 +1079,7 @@ config INTEL_TURBO_MAX_3
>
>  config SILEAD_DMI
>  	bool "Tablets with Silead touchscreens"
> -	depends on ACPI && DMI && I2C && INPUT
> +	depends on ACPI && DMI && I2C=y && INPUT
>  	---help---
>  	  Certain ACPI based tablets with Silead touchscreens do not have
>  	  enough data in ACPI tables for the touchscreen driver to handle
>

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

* Re: [PATCH] platform/x86: silead depends on I2C being built-in
  2017-02-02 14:45 ` Hans de Goede
@ 2017-02-02 15:01   ` Andy Shevchenko
  2017-02-02 15:10     ` Hans de Goede
  0 siblings, 1 reply; 5+ messages in thread
From: Andy Shevchenko @ 2017-02-02 15:01 UTC (permalink / raw)
  To: Hans de Goede
  Cc: Arnd Bergmann, Darren Hart, Andy Shevchenko, Platform Driver,
	linux-kernel

On Thu, Feb 2, 2017 at 4:45 PM, Hans de Goede <hdegoede@redhat.com> wrote:
> Hi,
>
> On 02-02-17 15:25, Arnd Bergmann wrote:
>>
>> The new driver cannot be a loadable module, so if I2C is loadable, we get
>> this
>> link error:
>>
>> drivers/platform/built-in.o: In function `silead_ts_dmi_init':
>> silead_dmi.c:(.init.text+0x2ef): undefined reference to `i2c_bus_type'
>>
>> This makes the Kconfig dependency stricter to require I2C=y.
>>
>> Fixes: 9eeda3897a85 ("platform/x86: add support for devices with Silead
>> touchscreens")
>> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
>
>
> Thank you.
>
> Acked-by: Hans de Goede <hdegoede@redhat.com>

I'm a bit confused now:

http://www.spinics.net/lists/platform-driver-x86/msg10408.html

Please, clarify.

>
> Regards.
>
> Hans
>
>
>
>> ---
>>  drivers/platform/x86/Kconfig | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>
>> diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
>> index dd4952ac8797..a7fe9b9f975d 100644
>> --- a/drivers/platform/x86/Kconfig
>> +++ b/drivers/platform/x86/Kconfig
>> @@ -1079,7 +1079,7 @@ config INTEL_TURBO_MAX_3
>>
>>  config SILEAD_DMI
>>         bool "Tablets with Silead touchscreens"
>> -       depends on ACPI && DMI && I2C && INPUT
>> +       depends on ACPI && DMI && I2C=y && INPUT
>>         ---help---
>>           Certain ACPI based tablets with Silead touchscreens do not have
>>           enough data in ACPI tables for the touchscreen driver to handle
>>
>



-- 
With Best Regards,
Andy Shevchenko

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

* Re: [PATCH] platform/x86: silead depends on I2C being built-in
  2017-02-02 15:01   ` Andy Shevchenko
@ 2017-02-02 15:10     ` Hans de Goede
  2017-02-02 15:24       ` Andy Shevchenko
  0 siblings, 1 reply; 5+ messages in thread
From: Hans de Goede @ 2017-02-02 15:10 UTC (permalink / raw)
  To: Andy Shevchenko
  Cc: Arnd Bergmann, Darren Hart, Andy Shevchenko, Platform Driver,
	linux-kernel

Hi,

On 02-02-17 16:01, Andy Shevchenko wrote:
> On Thu, Feb 2, 2017 at 4:45 PM, Hans de Goede <hdegoede@redhat.com> wrote:
>> Hi,
>>
>> On 02-02-17 15:25, Arnd Bergmann wrote:
>>>
>>> The new driver cannot be a loadable module, so if I2C is loadable, we get
>>> this
>>> link error:
>>>
>>> drivers/platform/built-in.o: In function `silead_ts_dmi_init':
>>> silead_dmi.c:(.init.text+0x2ef): undefined reference to `i2c_bus_type'
>>>
>>> This makes the Kconfig dependency stricter to require I2C=y.
>>>
>>> Fixes: 9eeda3897a85 ("platform/x86: add support for devices with Silead
>>> touchscreens")
>>> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
>>
>>
>> Thank you.
>>
>> Acked-by: Hans de Goede <hdegoede@redhat.com>
>
> I'm a bit confused now:
>
> http://www.spinics.net/lists/platform-driver-x86/msg10408.html
>
> Please, clarify.

The depends on INPUT is not entirely wrong, the module does not
need it, but without the SILEAD driver being build the silead_dmi
code is of no use. Since multiple people already reported this
I thought it would be best to just go ahead with Arnd's version.

Regards,

Hans


>
>>
>> Regards.
>>
>> Hans
>>
>>
>>
>>> ---
>>>  drivers/platform/x86/Kconfig | 2 +-
>>>  1 file changed, 1 insertion(+), 1 deletion(-)
>>>
>>> diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
>>> index dd4952ac8797..a7fe9b9f975d 100644
>>> --- a/drivers/platform/x86/Kconfig
>>> +++ b/drivers/platform/x86/Kconfig
>>> @@ -1079,7 +1079,7 @@ config INTEL_TURBO_MAX_3
>>>
>>>  config SILEAD_DMI
>>>         bool "Tablets with Silead touchscreens"
>>> -       depends on ACPI && DMI && I2C && INPUT
>>> +       depends on ACPI && DMI && I2C=y && INPUT
>>>         ---help---
>>>           Certain ACPI based tablets with Silead touchscreens do not have
>>>           enough data in ACPI tables for the touchscreen driver to handle
>>>
>>
>
>
>

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

* Re: [PATCH] platform/x86: silead depends on I2C being built-in
  2017-02-02 15:10     ` Hans de Goede
@ 2017-02-02 15:24       ` Andy Shevchenko
  0 siblings, 0 replies; 5+ messages in thread
From: Andy Shevchenko @ 2017-02-02 15:24 UTC (permalink / raw)
  To: Hans de Goede
  Cc: Arnd Bergmann, Darren Hart, Andy Shevchenko, Platform Driver,
	linux-kernel

On Thu, Feb 2, 2017 at 5:10 PM, Hans de Goede <hdegoede@redhat.com> wrote:
> On 02-02-17 16:01, Andy Shevchenko wrote:
>> On Thu, Feb 2, 2017 at 4:45 PM, Hans de Goede <hdegoede@redhat.com> wrote:

>>> Thank you.
>>>
>>> Acked-by: Hans de Goede <hdegoede@redhat.com>
>>
>>
>> I'm a bit confused now:
>>
>> http://www.spinics.net/lists/platform-driver-x86/msg10408.html
>>
>> Please, clarify.
>
> The depends on INPUT is not entirely wrong, the module does not
> need it, but without the SILEAD driver being build the silead_dmi
> code is of no use. Since multiple people already reported this
> I thought it would be best to just go ahead with Arnd's version.

Thanks, pushed to testing.

-- 
With Best Regards,
Andy Shevchenko

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

end of thread, other threads:[~2017-02-02 15:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-02-02 14:25 [PATCH] platform/x86: silead depends on I2C being built-in Arnd Bergmann
2017-02-02 14:45 ` Hans de Goede
2017-02-02 15:01   ` Andy Shevchenko
2017-02-02 15:10     ` Hans de Goede
2017-02-02 15:24       ` Andy Shevchenko

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).