All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] LED/MIPS: Move SEAD3 LED driver to where it belongs.
@ 2015-08-03 15:04 Ralf Baechle
  2015-08-03 15:33 ` Sergei Shtylyov
  2015-09-17  8:36 ` Jacek Anaszewski
  0 siblings, 2 replies; 8+ messages in thread
From: Ralf Baechle @ 2015-08-03 15:04 UTC (permalink / raw)
  To: Bryan Wu, Richard Purdie, Jacek Anaszewski, Markos Chandras
  Cc: linux-leds, linux-mips

Fixes the following randconfig problem

leds-sead3.c:(.text+0x7dc): undefined reference to `led_classdev_unregister'
leds-sead3.c:(.text+0x7e8): undefined reference to `led_classdev_unregister'

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Cc: Bryan Wu <cooloney@gmail.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Cc: Jacek Anaszewski <j.anaszewski@samsung.com>
Cc: Markos Chandras <markos.chandras@imgtec.com>
Cc: linux-leds@vger.kernel.org
Cc: linux-mips@linux-mips.org
---
 arch/mips/mti-sead3/Makefile                       |  2 --
 drivers/leds/Kconfig                               | 10 ++++++++++
 drivers/leds/Makefile                              |  1 +
 {arch/mips/mti-sead3 => drivers/leds}/leds-sead3.c |  1 +
 4 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/arch/mips/mti-sead3/Makefile b/arch/mips/mti-sead3/Makefile
index 2e52cbd..7a584e0 100644
--- a/arch/mips/mti-sead3/Makefile
+++ b/arch/mips/mti-sead3/Makefile
@@ -12,6 +12,4 @@ obj-y				:= sead3-lcd.o sead3-display.o sead3-init.o \
 				   sead3-int.o sead3-platform.o sead3-reset.o \
 				   sead3-setup.o sead3-time.o
 
-obj-y				+= leds-sead3.o
-
 obj-$(CONFIG_EARLY_PRINTK)	+= sead3-console.o
diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig
index 9ad35f7..531729c 100644
--- a/drivers/leds/Kconfig
+++ b/drivers/leds/Kconfig
@@ -550,6 +550,16 @@ config LEDS_KTD2692
 
 	  Say Y to enable this driver.
 
+config LEDS_SEAD3
+	tristate "LED support for the MIPS SEAD 3 board"
+	depends on LEDS_CLASS && MIPS_SEAD3
+	help
+	  Say Y here to include support for the FLED and PLED LEDs on SEAD3 eval
+	  boards.
+
+	  This driver can also be built as a module. If so the module
+	  will be called leds-sead3.
+
 comment "LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)"
 
 config LEDS_BLINKM
diff --git a/drivers/leds/Makefile b/drivers/leds/Makefile
index 8d6a24a..a976161 100644
--- a/drivers/leds/Makefile
+++ b/drivers/leds/Makefile
@@ -65,6 +65,7 @@ obj-$(CONFIG_LEDS_VERSATILE)		+= leds-versatile.o
 obj-$(CONFIG_LEDS_MENF21BMC)		+= leds-menf21bmc.o
 obj-$(CONFIG_LEDS_PM8941_WLED)		+= leds-pm8941-wled.o
 obj-$(CONFIG_LEDS_KTD2692)		+= leds-ktd2692.o
+obj-$(CONFIG_LEDS_SEAD3)		+= leds-sead3.o
 
 # LED SPI Drivers
 obj-$(CONFIG_LEDS_DAC124S085)		+= leds-dac124s085.o
diff --git a/arch/mips/mti-sead3/leds-sead3.c b/drivers/leds/leds-sead3.c
similarity index 99%
rename from arch/mips/mti-sead3/leds-sead3.c
rename to drivers/leds/leds-sead3.c
index c938cee..eb97a32 100644
--- a/arch/mips/mti-sead3/leds-sead3.c
+++ b/drivers/leds/leds-sead3.c
@@ -59,6 +59,7 @@ static int sead3_led_remove(struct platform_device *pdev)
 {
 	led_classdev_unregister(&sead3_pled);
 	led_classdev_unregister(&sead3_fled);
+
 	return 0;
 }
 

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

* Re: [PATCH v2] LED/MIPS: Move SEAD3 LED driver to where it belongs.
  2015-08-03 15:04 [PATCH v2] LED/MIPS: Move SEAD3 LED driver to where it belongs Ralf Baechle
@ 2015-08-03 15:33 ` Sergei Shtylyov
  2015-08-04 12:18   ` Jacek Anaszewski
  2015-09-17  8:36 ` Jacek Anaszewski
  1 sibling, 1 reply; 8+ messages in thread
From: Sergei Shtylyov @ 2015-08-03 15:33 UTC (permalink / raw)
  To: Ralf Baechle, Bryan Wu, Richard Purdie, Jacek Anaszewski,
	Markos Chandras
  Cc: linux-leds, linux-mips

Hello.

On 08/03/2015 06:04 PM, Ralf Baechle wrote:

> Fixes the following randconfig problem

> leds-sead3.c:(.text+0x7dc): undefined reference to `led_classdev_unregister'
> leds-sead3.c:(.text+0x7e8): undefined reference to `led_classdev_unregister'

> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
> Cc: Bryan Wu <cooloney@gmail.com>
> Cc: Richard Purdie <rpurdie@rpsys.net>
> Cc: Jacek Anaszewski <j.anaszewski@samsung.com>
> Cc: Markos Chandras <markos.chandras@imgtec.com>
> Cc: linux-leds@vger.kernel.org
> Cc: linux-mips@linux-mips.org

[...]

> diff --git a/arch/mips/mti-sead3/leds-sead3.c b/drivers/leds/leds-sead3.c
> similarity index 99%
> rename from arch/mips/mti-sead3/leds-sead3.c
> rename to drivers/leds/leds-sead3.c
> index c938cee..eb97a32 100644
> --- a/arch/mips/mti-sead3/leds-sead3.c
> +++ b/drivers/leds/leds-sead3.c

     Oh, so you started to use -M finally. :-)

> @@ -59,6 +59,7 @@ static int sead3_led_remove(struct platform_device *pdev)
>   {
>   	led_classdev_unregister(&sead3_pled);
>   	led_classdev_unregister(&sead3_fled);
> +

    Unrelated white space change?

>   	return 0;
>   }

MBR, Sergei

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

* Re: [PATCH v2] LED/MIPS: Move SEAD3 LED driver to where it belongs.
  2015-08-03 15:33 ` Sergei Shtylyov
@ 2015-08-04 12:18   ` Jacek Anaszewski
  0 siblings, 0 replies; 8+ messages in thread
From: Jacek Anaszewski @ 2015-08-04 12:18 UTC (permalink / raw)
  To: Sergei Shtylyov, Ralf Baechle, Bryan Wu, Richard Purdie,
	Jacek Anaszewski, Markos Chandras
  Cc: linux-leds, linux-mips

Hi Ralf, Sergei,

On 08/03/2015 05:33 PM, Sergei Shtylyov wrote:
> Hello.
>
> On 08/03/2015 06:04 PM, Ralf Baechle wrote:
>
>> Fixes the following randconfig problem
>
>> leds-sead3.c:(.text+0x7dc): undefined reference to
>> `led_classdev_unregister'
>> leds-sead3.c:(.text+0x7e8): undefined reference to
>> `led_classdev_unregister'
>
>> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
>> Cc: Bryan Wu <cooloney@gmail.com>
>> Cc: Richard Purdie <rpurdie@rpsys.net>
>> Cc: Jacek Anaszewski <j.anaszewski@samsung.com>
>> Cc: Markos Chandras <markos.chandras@imgtec.com>
>> Cc: linux-leds@vger.kernel.org
>> Cc: linux-mips@linux-mips.org
>
> [...]
>
>> diff --git a/arch/mips/mti-sead3/leds-sead3.c b/drivers/leds/leds-sead3.c
>> similarity index 99%
>> rename from arch/mips/mti-sead3/leds-sead3.c
>> rename to drivers/leds/leds-sead3.c
>> index c938cee..eb97a32 100644
>> --- a/arch/mips/mti-sead3/leds-sead3.c
>> +++ b/drivers/leds/leds-sead3.c
>
>      Oh, so you started to use -M finally. :-)
>
>> @@ -59,6 +59,7 @@ static int sead3_led_remove(struct platform_device
>> *pdev)
>>   {
>>       led_classdev_unregister(&sead3_pled);
>>       led_classdev_unregister(&sead3_fled);
>> +
>
>     Unrelated white space change?

Ralf, please split this change to the separate patch.
You could also reorder include directives to be arranged in
an alphabetical order.

>>       return 0;
>>   }
>
> MBR, Sergei
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-leds" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

-- 
Best Regards,
Jacek Anaszewski

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

* Re: [PATCH v2] LED/MIPS: Move SEAD3 LED driver to where it belongs.
  2015-08-03 15:04 [PATCH v2] LED/MIPS: Move SEAD3 LED driver to where it belongs Ralf Baechle
  2015-08-03 15:33 ` Sergei Shtylyov
@ 2015-09-17  8:36 ` Jacek Anaszewski
  2015-09-18 21:05     ` Paul Burton
  1 sibling, 1 reply; 8+ messages in thread
From: Jacek Anaszewski @ 2015-09-17  8:36 UTC (permalink / raw)
  To: Ralf Baechle
  Cc: Bryan Wu, Richard Purdie, Markos Chandras, linux-leds, linux-mips

Hi Ralf,

This patch got stuck somewhere in my mailbox and just
recently showed up to my eyes again, so I applied it to v4.3-rc1, but 
when tried to compile-test it, I got following errors:

arch/mips/kernel/signal.c: In function 'sc_to_extcontext':
arch/mips/kernel/signal.c:143:12: error: 'struct ucontext' has no member 
named 'uc_extcontext'
   return &uc->uc_extcontext;
             ^
In file included from include/linux/poll.h:11:0,
                  from include/linux/ring_buffer.h:7,
                  from include/linux/trace_events.h:5,
                  from include/trace/syscall.h:6,
                  from include/linux/syscalls.h:81,
                  from arch/mips/kernel/signal.c:26:
arch/mips/kernel/signal.c: In function 'save_msa_extcontext':
arch/mips/kernel/signal.c:171:40: error: dereferencing pointer to 
incomplete type
    err = __put_user(read_msa_csr(), &msa->csr);
                                         ^
./arch/mips/include/asm/uaccess.h:441:15: note: in definition of macro 
'__put_user_nocheck'
   __typeof__(*(ptr)) __pu_val;     \
                ^
arch/mips/kernel/signal.c:171:9: note: in expansion of macro '__put_user'
    err = __put_user(read_msa_csr(), &msa->csr);
          ^
arch/mips/kernel/signal.c:171:40: error: dereferencing pointer to 
incomplete type
    err = __put_user(read_msa_csr(), &msa->csr);
                                         ^
./arch/mips/include/asm/uaccess.h:430:10: note: in definition of macro 
'__put_user_common'
   switch (size) {       \
           ^
./arch/mips/include/asm/uaccess.h:446:3: note: in expansion of macro 
'__put_kernel_common'
    __put_kernel_common(ptr, size);    \
    ^
./arch/mips/include/asm/uaccess.h:214:2: note: in expansion of macro 
'__put_user_nocheck'
   __put_user_nocheck((x), (ptr), sizeof(*(ptr)))
   ^
arch/mips/kernel/signal.c:171:9: note: in expansion of macro '__put_user'
    err = __put_user(read_msa_csr(), &msa->csr);
          ^
arch/mips/kernel/signal.c:171:40: error: dereferencing pointer to 
incomplete type
    err = __put_user(read_msa_csr(), &msa->csr);
                                         ^
./arch/mips/include/asm/uaccess.h:241:51: note: in definition of macro '__m'
  #define __m(x) (*(struct __large_struct __user *)(x))
                                                    ^
-- cut listing here - it is much longer --


Compilation succeeds with v4.2-rc8.
Is it a known issue?

-- 
Best Regards,
Jacek Anaszewski

On 08/03/2015 05:04 PM, Ralf Baechle wrote:
> Fixes the following randconfig problem
>
> leds-sead3.c:(.text+0x7dc): undefined reference to `led_classdev_unregister'
> leds-sead3.c:(.text+0x7e8): undefined reference to `led_classdev_unregister'
>
> Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
> Cc: Bryan Wu <cooloney@gmail.com>
> Cc: Richard Purdie <rpurdie@rpsys.net>
> Cc: Jacek Anaszewski <j.anaszewski@samsung.com>
> Cc: Markos Chandras <markos.chandras@imgtec.com>
> Cc: linux-leds@vger.kernel.org
> Cc: linux-mips@linux-mips.org
> ---
>   arch/mips/mti-sead3/Makefile                       |  2 --
>   drivers/leds/Kconfig                               | 10 ++++++++++
>   drivers/leds/Makefile                              |  1 +
>   {arch/mips/mti-sead3 => drivers/leds}/leds-sead3.c |  1 +
>   4 files changed, 12 insertions(+), 2 deletions(-)
>
> diff --git a/arch/mips/mti-sead3/Makefile b/arch/mips/mti-sead3/Makefile
> index 2e52cbd..7a584e0 100644
> --- a/arch/mips/mti-sead3/Makefile
> +++ b/arch/mips/mti-sead3/Makefile
> @@ -12,6 +12,4 @@ obj-y				:= sead3-lcd.o sead3-display.o sead3-init.o \
>   				   sead3-int.o sead3-platform.o sead3-reset.o \
>   				   sead3-setup.o sead3-time.o
>
> -obj-y				+= leds-sead3.o
> -
>   obj-$(CONFIG_EARLY_PRINTK)	+= sead3-console.o
> diff --git a/drivers/leds/Kconfig b/drivers/leds/Kconfig
> index 9ad35f7..531729c 100644
> --- a/drivers/leds/Kconfig
> +++ b/drivers/leds/Kconfig
> @@ -550,6 +550,16 @@ config LEDS_KTD2692
>
>   	  Say Y to enable this driver.
>
> +config LEDS_SEAD3
> +	tristate "LED support for the MIPS SEAD 3 board"
> +	depends on LEDS_CLASS && MIPS_SEAD3
> +	help
> +	  Say Y here to include support for the FLED and PLED LEDs on SEAD3 eval
> +	  boards.
> +
> +	  This driver can also be built as a module. If so the module
> +	  will be called leds-sead3.
> +
>   comment "LED driver for blink(1) USB RGB LED is under Special HID drivers (HID_THINGM)"
>
>   config LEDS_BLINKM
> diff --git a/drivers/leds/Makefile b/drivers/leds/Makefile
> index 8d6a24a..a976161 100644
> --- a/drivers/leds/Makefile
> +++ b/drivers/leds/Makefile
> @@ -65,6 +65,7 @@ obj-$(CONFIG_LEDS_VERSATILE)		+= leds-versatile.o
>   obj-$(CONFIG_LEDS_MENF21BMC)		+= leds-menf21bmc.o
>   obj-$(CONFIG_LEDS_PM8941_WLED)		+= leds-pm8941-wled.o
>   obj-$(CONFIG_LEDS_KTD2692)		+= leds-ktd2692.o
> +obj-$(CONFIG_LEDS_SEAD3)		+= leds-sead3.o
>
>   # LED SPI Drivers
>   obj-$(CONFIG_LEDS_DAC124S085)		+= leds-dac124s085.o
> diff --git a/arch/mips/mti-sead3/leds-sead3.c b/drivers/leds/leds-sead3.c
> similarity index 99%
> rename from arch/mips/mti-sead3/leds-sead3.c
> rename to drivers/leds/leds-sead3.c
> index c938cee..eb97a32 100644
> --- a/arch/mips/mti-sead3/leds-sead3.c
> +++ b/drivers/leds/leds-sead3.c
> @@ -59,6 +59,7 @@ static int sead3_led_remove(struct platform_device *pdev)
>   {
>   	led_classdev_unregister(&sead3_pled);
>   	led_classdev_unregister(&sead3_fled);
> +
>   	return 0;
>   }
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-leds" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

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

* Re: [PATCH v2] LED/MIPS: Move SEAD3 LED driver to where it belongs.
  2015-09-17  8:36 ` Jacek Anaszewski
@ 2015-09-18 21:05     ` Paul Burton
  0 siblings, 0 replies; 8+ messages in thread
From: Paul Burton @ 2015-09-18 21:05 UTC (permalink / raw)
  To: Jacek Anaszewski
  Cc: Ralf Baechle, Bryan Wu, Richard Purdie, Markos Chandras,
	linux-leds, linux-mips

On Thu, Sep 17, 2015 at 10:36:48AM +0200, Jacek Anaszewski wrote:
> Hi Ralf,
> 
> This patch got stuck somewhere in my mailbox and just
> recently showed up to my eyes again, so I applied it to v4.3-rc1, but when
> tried to compile-test it, I got following errors:
> 
> arch/mips/kernel/signal.c: In function 'sc_to_extcontext':
> arch/mips/kernel/signal.c:143:12: error: 'struct ucontext' has no member
> named 'uc_extcontext'
>   return &uc->uc_extcontext;
>             ^

<snip...>

> Compilation succeeds with v4.2-rc8.
> Is it a known issue?

Hi Jacek,

The patches adding the MSA extended context added a MIPS-specific
ucontext.h, where we were previously were using the generic one. Kbuild
doesn't automatically remove the old generated header that includes the
generic version, so could you try either cleaning your working tree or
removing arch/mips/include/generated and trying again?

Thanks,
    Paul

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

* Re: [PATCH v2] LED/MIPS: Move SEAD3 LED driver to where it belongs.
@ 2015-09-18 21:05     ` Paul Burton
  0 siblings, 0 replies; 8+ messages in thread
From: Paul Burton @ 2015-09-18 21:05 UTC (permalink / raw)
  To: Jacek Anaszewski
  Cc: Ralf Baechle, Bryan Wu, Richard Purdie, Markos Chandras,
	linux-leds, linux-mips

On Thu, Sep 17, 2015 at 10:36:48AM +0200, Jacek Anaszewski wrote:
> Hi Ralf,
> 
> This patch got stuck somewhere in my mailbox and just
> recently showed up to my eyes again, so I applied it to v4.3-rc1, but when
> tried to compile-test it, I got following errors:
> 
> arch/mips/kernel/signal.c: In function 'sc_to_extcontext':
> arch/mips/kernel/signal.c:143:12: error: 'struct ucontext' has no member
> named 'uc_extcontext'
>   return &uc->uc_extcontext;
>             ^

<snip...>

> Compilation succeeds with v4.2-rc8.
> Is it a known issue?

Hi Jacek,

The patches adding the MSA extended context added a MIPS-specific
ucontext.h, where we were previously were using the generic one. Kbuild
doesn't automatically remove the old generated header that includes the
generic version, so could you try either cleaning your working tree or
removing arch/mips/include/generated and trying again?

Thanks,
    Paul

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

* Re: [PATCH v2] LED/MIPS: Move SEAD3 LED driver to where it belongs.
  2015-09-18 21:05     ` Paul Burton
  (?)
@ 2015-09-19  2:49     ` Florian Fainelli
  -1 siblings, 0 replies; 8+ messages in thread
From: Florian Fainelli @ 2015-09-19  2:49 UTC (permalink / raw)
  To: Paul Burton, Jacek Anaszewski
  Cc: Ralf Baechle, Bryan Wu, Richard Purdie, Markos Chandras,
	linux-leds, linux-mips

Le 09/18/15 14:05, Paul Burton a écrit :
> On Thu, Sep 17, 2015 at 10:36:48AM +0200, Jacek Anaszewski wrote:
>> Hi Ralf,
>>
>> This patch got stuck somewhere in my mailbox and just
>> recently showed up to my eyes again, so I applied it to v4.3-rc1, but when
>> tried to compile-test it, I got following errors:
>>
>> arch/mips/kernel/signal.c: In function 'sc_to_extcontext':
>> arch/mips/kernel/signal.c:143:12: error: 'struct ucontext' has no member
>> named 'uc_extcontext'
>>   return &uc->uc_extcontext;
>>             ^
> 
> <snip...>
> 
>> Compilation succeeds with v4.2-rc8.
>> Is it a known issue?
> 
> Hi Jacek,
> 
> The patches adding the MSA extended context added a MIPS-specific
> ucontext.h, where we were previously were using the generic one. Kbuild
> doesn't automatically remove the old generated header that includes the
> generic version, so could you try either cleaning your working tree or
> removing arch/mips/include/generated and trying again?

I stumbled on that problem as well before, do you think there is
anything that could be done to track down the dependency here and
re-generate arch/mips/include/generated/ucontext.h? This build error is
not that easy to correlate with changes in ucontext.h.

Thanks!
-- 
Florian

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

* Re: [PATCH v2] LED/MIPS: Move SEAD3 LED driver to where it belongs.
  2015-09-18 21:05     ` Paul Burton
  (?)
  (?)
@ 2015-09-21  8:52     ` Jacek Anaszewski
  -1 siblings, 0 replies; 8+ messages in thread
From: Jacek Anaszewski @ 2015-09-21  8:52 UTC (permalink / raw)
  To: Paul Burton
  Cc: Ralf Baechle, Bryan Wu, Richard Purdie, Markos Chandras,
	linux-leds, linux-mips

Hi Paul,

On 09/18/2015 11:05 PM, Paul Burton wrote:
> On Thu, Sep 17, 2015 at 10:36:48AM +0200, Jacek Anaszewski wrote:
>> Hi Ralf,
>>
>> This patch got stuck somewhere in my mailbox and just
>> recently showed up to my eyes again, so I applied it to v4.3-rc1, but when
>> tried to compile-test it, I got following errors:
>>
>> arch/mips/kernel/signal.c: In function 'sc_to_extcontext':
>> arch/mips/kernel/signal.c:143:12: error: 'struct ucontext' has no member
>> named 'uc_extcontext'
>>    return &uc->uc_extcontext;
>>              ^
>
> <snip...>
>
>> Compilation succeeds with v4.2-rc8.
>> Is it a known issue?
>
> Hi Jacek,
>
> The patches adding the MSA extended context added a MIPS-specific
> ucontext.h, where we were previously were using the generic one. Kbuild
> doesn't automatically remove the old generated header that includes the
> generic version, so could you try either cleaning your working tree or
> removing arch/mips/include/generated and trying again?

Thanks for the hint. It works.

I've applied the patch to the for-next branch of linux-leds.git

-- 
Best Regards,
Jacek Anaszewski

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

end of thread, other threads:[~2015-09-21  8:52 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-03 15:04 [PATCH v2] LED/MIPS: Move SEAD3 LED driver to where it belongs Ralf Baechle
2015-08-03 15:33 ` Sergei Shtylyov
2015-08-04 12:18   ` Jacek Anaszewski
2015-09-17  8:36 ` Jacek Anaszewski
2015-09-18 21:05   ` Paul Burton
2015-09-18 21:05     ` Paul Burton
2015-09-19  2:49     ` Florian Fainelli
2015-09-21  8:52     ` Jacek Anaszewski

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.