linux-next.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH]amilo-rfkill: add depends on i8042 in Kconfig
@ 2013-06-18  9:21 Xiong Zhou
  2013-06-18 13:04 ` Ben Hutchings
  0 siblings, 1 reply; 7+ messages in thread
From: Xiong Zhou @ 2013-06-18  9:21 UTC (permalink / raw)
  To: matthew.garrett, bhutchings
  Cc: platform-driver-x86, linux-next, linux-kernel, Stephen Rothwell,
	jim.epost

From: Xiong Zhou <jencce.kernel@gmail.com>

Fix randconfig build failure for Amilo x86 platform driver.
AMILO_RFKILL requires SERIO_I8042 being available.

amilo-rfkill.c:(.text+0x108b5b): undefined reference to `i8042_lock_chip'
amilo-rfkill.c:(.text+0x108b69): undefined reference to `i8042_command'
amilo-rfkill.c:(.text+0x108b71): undefined reference to `i8042_unlock_chip'

Reported-by: Jim Davis <jim.epost@gmail.com>
Signed-off-by: Xiong Zhou <jencce.kernel@gmail.com>
---
 drivers/platform/x86/Kconfig |    1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
index 8577261..37645b9 100644
--- a/drivers/platform/x86/Kconfig
+++ b/drivers/platform/x86/Kconfig
@@ -176,6 +176,7 @@ config FUJITSU_TABLET
 config AMILO_RFKILL
 	tristate "Fujitsu-Siemens Amilo rfkill support"
 	depends on RFKILL
+	depends on SERIO_I8042
 	---help---
 	  This is a driver for enabling wifi on some Fujitsu-Siemens Amilo
 	  laptops.

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

* Re: [PATCH]amilo-rfkill: add depends on i8042 in Kconfig
  2013-06-18  9:21 [PATCH]amilo-rfkill: add depends on i8042 in Kconfig Xiong Zhou
@ 2013-06-18 13:04 ` Ben Hutchings
  2013-06-18 15:00   ` Randy Dunlap
  0 siblings, 1 reply; 7+ messages in thread
From: Ben Hutchings @ 2013-06-18 13:04 UTC (permalink / raw)
  To: Xiong Zhou
  Cc: matthew.garrett, platform-driver-x86, linux-next, linux-kernel,
	Stephen Rothwell, jim.epost

[-- Attachment #1: Type: text/plain, Size: 1318 bytes --]

On Tue, 2013-06-18 at 17:21 +0800, Xiong Zhou wrote:
> From: Xiong Zhou <jencce.kernel@gmail.com>
> 
> Fix randconfig build failure for Amilo x86 platform driver.
> AMILO_RFKILL requires SERIO_I8042 being available.
> 
> amilo-rfkill.c:(.text+0x108b5b): undefined reference to `i8042_lock_chip'
> amilo-rfkill.c:(.text+0x108b69): undefined reference to `i8042_command'
> amilo-rfkill.c:(.text+0x108b71): undefined reference to `i8042_unlock_chip'
> 
> Reported-by: Jim Davis <jim.epost@gmail.com>
> Signed-off-by: Xiong Zhou <jencce.kernel@gmail.com>

Acked-by: Ben Hutchings <ben@decadent.org.uk>

But I thought somehow sent this same fix a while back...

Ben.

> ---
>  drivers/platform/x86/Kconfig |    1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
> index 8577261..37645b9 100644
> --- a/drivers/platform/x86/Kconfig
> +++ b/drivers/platform/x86/Kconfig
> @@ -176,6 +176,7 @@ config FUJITSU_TABLET
>  config AMILO_RFKILL
>  	tristate "Fujitsu-Siemens Amilo rfkill support"
>  	depends on RFKILL
> +	depends on SERIO_I8042
>  	---help---
>  	  This is a driver for enabling wifi on some Fujitsu-Siemens Amilo
>  	  laptops.

-- 
Ben Hutchings
Humans are not rational beings; they are rationalising beings.

[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 828 bytes --]

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

* Re: [PATCH]amilo-rfkill: add depends on i8042 in Kconfig
  2013-06-18 13:04 ` Ben Hutchings
@ 2013-06-18 15:00   ` Randy Dunlap
  2013-06-19  1:09     ` Xiong Zhou
  0 siblings, 1 reply; 7+ messages in thread
From: Randy Dunlap @ 2013-06-18 15:00 UTC (permalink / raw)
  To: Ben Hutchings
  Cc: Xiong Zhou, matthew.garrett, platform-driver-x86, linux-next,
	linux-kernel, Stephen Rothwell, jim.epost

On 06/18/13 06:04, Ben Hutchings wrote:
> On Tue, 2013-06-18 at 17:21 +0800, Xiong Zhou wrote:
>> From: Xiong Zhou <jencce.kernel@gmail.com>
>>
>> Fix randconfig build failure for Amilo x86 platform driver.
>> AMILO_RFKILL requires SERIO_I8042 being available.
>>
>> amilo-rfkill.c:(.text+0x108b5b): undefined reference to `i8042_lock_chip'
>> amilo-rfkill.c:(.text+0x108b69): undefined reference to `i8042_command'
>> amilo-rfkill.c:(.text+0x108b71): undefined reference to `i8042_unlock_chip'
>>
>> Reported-by: Jim Davis <jim.epost@gmail.com>
>> Signed-off-by: Xiong Zhou <jencce.kernel@gmail.com>
> 
> Acked-by: Ben Hutchings <ben@decadent.org.uk>
> 
> But I thought somehow sent this same fix a while back...

Yes, I reported it and sent a patch for it that you acked...
I guess my patch was never picked up.

> 
> Ben.
> 
>> ---
>>  drivers/platform/x86/Kconfig |    1 +
>>  1 file changed, 1 insertion(+)
>>
>> diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
>> index 8577261..37645b9 100644
>> --- a/drivers/platform/x86/Kconfig
>> +++ b/drivers/platform/x86/Kconfig
>> @@ -176,6 +176,7 @@ config FUJITSU_TABLET
>>  config AMILO_RFKILL
>>  	tristate "Fujitsu-Siemens Amilo rfkill support"
>>  	depends on RFKILL
>> +	depends on SERIO_I8042
>>  	---help---
>>  	  This is a driver for enabling wifi on some Fujitsu-Siemens Amilo
>>  	  laptops.
> 


-- 
~Randy

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

* Re: [PATCH]amilo-rfkill: add depends on i8042 in Kconfig
  2013-06-18 15:00   ` Randy Dunlap
@ 2013-06-19  1:09     ` Xiong Zhou
  2013-06-27 16:40       ` Randy Dunlap
  0 siblings, 1 reply; 7+ messages in thread
From: Xiong Zhou @ 2013-06-19  1:09 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Ben Hutchings, matthew.garrett, platform-driver-x86, Linux-Next,
	linux-kernel, Stephen Rothwell, jim.epost

2013/6/18 Randy Dunlap <rdunlap@infradead.org>:
> On 06/18/13 06:04, Ben Hutchings wrote:
>> On Tue, 2013-06-18 at 17:21 +0800, Xiong Zhou wrote:
>>> From: Xiong Zhou <jencce.kernel@gmail.com>
>>>
>>> Fix randconfig build failure for Amilo x86 platform driver.
>>> AMILO_RFKILL requires SERIO_I8042 being available.
>>>
>>> amilo-rfkill.c:(.text+0x108b5b): undefined reference to `i8042_lock_chip'
>>> amilo-rfkill.c:(.text+0x108b69): undefined reference to `i8042_command'
>>> amilo-rfkill.c:(.text+0x108b71): undefined reference to `i8042_unlock_chip'
>>>
>>> Reported-by: Jim Davis <jim.epost@gmail.com>
>>> Signed-off-by: Xiong Zhou <jencce.kernel@gmail.com>
>>
>> Acked-by: Ben Hutchings <ben@decadent.org.uk>
>>
>> But I thought somehow sent this same fix a while back...
>
> Yes, I reported it and sent a patch for it that you acked...
> I guess my patch was never picked up.
>

... Better someone pick this up.


>>
>> Ben.
>>
>>> ---
>>>  drivers/platform/x86/Kconfig |    1 +
>>>  1 file changed, 1 insertion(+)
>>>
>>> diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
>>> index 8577261..37645b9 100644
>>> --- a/drivers/platform/x86/Kconfig
>>> +++ b/drivers/platform/x86/Kconfig
>>> @@ -176,6 +176,7 @@ config FUJITSU_TABLET
>>>  config AMILO_RFKILL
>>>      tristate "Fujitsu-Siemens Amilo rfkill support"
>>>      depends on RFKILL
>>> +    depends on SERIO_I8042
>>>      ---help---
>>>        This is a driver for enabling wifi on some Fujitsu-Siemens Amilo
>>>        laptops.
>>
>
>
> --
> ~Randy

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

* Re: [PATCH]amilo-rfkill: add depends on i8042 in Kconfig
  2013-06-19  1:09     ` Xiong Zhou
@ 2013-06-27 16:40       ` Randy Dunlap
  2013-07-12  3:46         ` Xiong Zhou
  0 siblings, 1 reply; 7+ messages in thread
From: Randy Dunlap @ 2013-06-27 16:40 UTC (permalink / raw)
  To: Xiong Zhou
  Cc: Ben Hutchings, matthew.garrett, platform-driver-x86, Linux-Next,
	linux-kernel, Stephen Rothwell, jim.epost

On 06/18/13 18:09, Xiong Zhou wrote:
> 2013/6/18 Randy Dunlap <rdunlap@infradead.org>:
>> On 06/18/13 06:04, Ben Hutchings wrote:
>>> On Tue, 2013-06-18 at 17:21 +0800, Xiong Zhou wrote:
>>>> From: Xiong Zhou <jencce.kernel@gmail.com>
>>>>
>>>> Fix randconfig build failure for Amilo x86 platform driver.
>>>> AMILO_RFKILL requires SERIO_I8042 being available.
>>>>
>>>> amilo-rfkill.c:(.text+0x108b5b): undefined reference to `i8042_lock_chip'
>>>> amilo-rfkill.c:(.text+0x108b69): undefined reference to `i8042_command'
>>>> amilo-rfkill.c:(.text+0x108b71): undefined reference to `i8042_unlock_chip'
>>>>
>>>> Reported-by: Jim Davis <jim.epost@gmail.com>
>>>> Signed-off-by: Xiong Zhou <jencce.kernel@gmail.com>
>>>
>>> Acked-by: Ben Hutchings <ben@decadent.org.uk>
>>>
>>> But I thought somehow sent this same fix a while back...
>>
>> Yes, I reported it and sent a patch for it that you acked...
>> I guess my patch was never picked up.
>>
> 
> ... Better someone pick this up.
> 

This build error is still occurring in linux-next (20130627).
I first reported it and posted a patch for it on May-15 2013.

Please merge either patch...

Is anybody out there?


> 
>>>
>>> Ben.
>>>
>>>> ---
>>>>  drivers/platform/x86/Kconfig |    1 +
>>>>  1 file changed, 1 insertion(+)
>>>>
>>>> diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
>>>> index 8577261..37645b9 100644
>>>> --- a/drivers/platform/x86/Kconfig
>>>> +++ b/drivers/platform/x86/Kconfig
>>>> @@ -176,6 +176,7 @@ config FUJITSU_TABLET
>>>>  config AMILO_RFKILL
>>>>      tristate "Fujitsu-Siemens Amilo rfkill support"
>>>>      depends on RFKILL
>>>> +    depends on SERIO_I8042
>>>>      ---help---
>>>>        This is a driver for enabling wifi on some Fujitsu-Siemens Amilo
>>>>        laptops.
>>>
>>
>>
>> --
>> ~Randy
> --


-- 
~Randy

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

* Re: [PATCH]amilo-rfkill: add depends on i8042 in Kconfig
  2013-06-27 16:40       ` Randy Dunlap
@ 2013-07-12  3:46         ` Xiong Zhou
  2013-08-20 11:05           ` Jiri Kosina
  0 siblings, 1 reply; 7+ messages in thread
From: Xiong Zhou @ 2013-07-12  3:46 UTC (permalink / raw)
  To: Randy Dunlap
  Cc: Ben Hutchings, matthew.garrett, platform-driver-x86, Linux-Next,
	linux-kernel, Stephen Rothwell, Jim Davis, Jiri Kosina

2013/6/28 Randy Dunlap <rdunlap@infradead.org>:
> On 06/18/13 18:09, Xiong Zhou wrote:
>> 2013/6/18 Randy Dunlap <rdunlap@infradead.org>:
>>> On 06/18/13 06:04, Ben Hutchings wrote:
>>>> On Tue, 2013-06-18 at 17:21 +0800, Xiong Zhou wrote:
>>>>> From: Xiong Zhou <jencce.kernel@gmail.com>
>>>>>
>>>>> Fix randconfig build failure for Amilo x86 platform driver.
>>>>> AMILO_RFKILL requires SERIO_I8042 being available.
>>>>>
>>>>> amilo-rfkill.c:(.text+0x108b5b): undefined reference to `i8042_lock_chip'
>>>>> amilo-rfkill.c:(.text+0x108b69): undefined reference to `i8042_command'
>>>>> amilo-rfkill.c:(.text+0x108b71): undefined reference to `i8042_unlock_chip'
>>>>>
>>>>> Reported-by: Jim Davis <jim.epost@gmail.com>
>>>>> Signed-off-by: Xiong Zhou <jencce.kernel@gmail.com>
>>>>
>>>> Acked-by: Ben Hutchings <ben@decadent.org.uk>
>>>>
>>>> But I thought somehow sent this same fix a while back...
>>>
>>> Yes, I reported it and sent a patch for it that you acked...
>>> I guess my patch was never picked up.
>>>
>>
>> ... Better someone pick this up.
>>
>
> This build error is still occurring in linux-next (20130627).
> I first reported it and posted a patch for it on May-15 2013.
>
> Please merge either patch...
>
> Is anybody out there?
>
>
>>
>>>>
>>>> Ben.
>>>>
>>>>> ---
>>>>>  drivers/platform/x86/Kconfig |    1 +
>>>>>  1 file changed, 1 insertion(+)
>>>>>
>>>>> diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
>>>>> index 8577261..37645b9 100644
>>>>> --- a/drivers/platform/x86/Kconfig
>>>>> +++ b/drivers/platform/x86/Kconfig
>>>>> @@ -176,6 +176,7 @@ config FUJITSU_TABLET
>>>>>  config AMILO_RFKILL
>>>>>      tristate "Fujitsu-Siemens Amilo rfkill support"
>>>>>      depends on RFKILL
>>>>> +    depends on SERIO_I8042
>>>>>      ---help---
>>>>>        This is a driver for enabling wifi on some Fujitsu-Siemens Amilo
>>>>>        laptops.
>>>>
>>>
>>>
>>> --
>>> ~Randy
>> --
>
>
> --
> ~Randy



cc Jiri Kosina <trivial@kernel.org>

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

* Re: [PATCH]amilo-rfkill: add depends on i8042 in Kconfig
  2013-07-12  3:46         ` Xiong Zhou
@ 2013-08-20 11:05           ` Jiri Kosina
  0 siblings, 0 replies; 7+ messages in thread
From: Jiri Kosina @ 2013-08-20 11:05 UTC (permalink / raw)
  To: Xiong Zhou
  Cc: Randy Dunlap, Ben Hutchings, matthew.garrett,
	platform-driver-x86, Linux-Next, linux-kernel, Stephen Rothwell,
	Jim Davis

On Fri, 12 Jul 2013, Xiong Zhou wrote:

> >>>>> Fix randconfig build failure for Amilo x86 platform driver.
> >>>>> AMILO_RFKILL requires SERIO_I8042 being available.
> >>>>>
> >>>>> amilo-rfkill.c:(.text+0x108b5b): undefined reference to `i8042_lock_chip'
> >>>>> amilo-rfkill.c:(.text+0x108b69): undefined reference to `i8042_command'
> >>>>> amilo-rfkill.c:(.text+0x108b71): undefined reference to `i8042_unlock_chip'
> >>>>>
> >>>>> Reported-by: Jim Davis <jim.epost@gmail.com>
> >>>>> Signed-off-by: Xiong Zhou <jencce.kernel@gmail.com>
> >>>>
> >>>> Acked-by: Ben Hutchings <ben@decadent.org.uk>
> >>>>
> >>>> But I thought somehow sent this same fix a while back...
> >>>
> >>> Yes, I reported it and sent a patch for it that you acked...
> >>> I guess my patch was never picked up.
> >>>
> >>
> >> ... Better someone pick this up.
> >>
> >
> > This build error is still occurring in linux-next (20130627).
> > I first reported it and posted a patch for it on May-15 2013.
> >
> > Please merge either patch...
> >
> > Is anybody out there?
> >
> >
> >>
> >>>>
> >>>> Ben.
> >>>>
> >>>>> ---
> >>>>>  drivers/platform/x86/Kconfig |    1 +
> >>>>>  1 file changed, 1 insertion(+)
> >>>>>
> >>>>> diff --git a/drivers/platform/x86/Kconfig b/drivers/platform/x86/Kconfig
> >>>>> index 8577261..37645b9 100644
> >>>>> --- a/drivers/platform/x86/Kconfig
> >>>>> +++ b/drivers/platform/x86/Kconfig
> >>>>> @@ -176,6 +176,7 @@ config FUJITSU_TABLET
> >>>>>  config AMILO_RFKILL
> >>>>>      tristate "Fujitsu-Siemens Amilo rfkill support"
> >>>>>      depends on RFKILL
> >>>>> +    depends on SERIO_I8042
> >>>>>      ---help---
> >>>>>        This is a driver for enabling wifi on some Fujitsu-Siemens Amilo
> >>>>>        laptops.
> >>>>
> >>>
> >>>
> >>> --
> >>> ~Randy
> >> --
> >
> >
> > --
> > ~Randy
> 
> 
> 
> cc Jiri Kosina <trivial@kernel.org>

Please resend the patch properly, it's not easy to dig it from the 
multi-depth quoted text.

-- 
Jiri Kosina
SUSE Labs

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

end of thread, other threads:[~2013-08-20 11:05 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-18  9:21 [PATCH]amilo-rfkill: add depends on i8042 in Kconfig Xiong Zhou
2013-06-18 13:04 ` Ben Hutchings
2013-06-18 15:00   ` Randy Dunlap
2013-06-19  1:09     ` Xiong Zhou
2013-06-27 16:40       ` Randy Dunlap
2013-07-12  3:46         ` Xiong Zhou
2013-08-20 11:05           ` Jiri Kosina

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