* [PATCH] fix drivers/staging/nvec linkage error when keyboard is disabled
@ 2011-10-08 17:29 Mikael Pettersson
[not found] ` <20112.34922.209107.730268-tgku4HJDRZih8lFjZTKsyTAV6s6igYVG@public.gmane.org>
0 siblings, 1 reply; 8+ messages in thread
From: Mikael Pettersson @ 2011-10-08 17:29 UTC (permalink / raw)
To: linux-tegra-u79uwXL29TY76Z2rM5mHXA; +Cc: linux-kernel-u79uwXL29TY76Z2rM5mHXA
Building linux-3.1-rc9 for the Tegra ARM SoC with CONFIG_MFD_NVEC=y
and CONFIG_KEYBOARD_NVEC=n results in the following linkage error:
drivers/built-in.o: In function `tegra_nvec_probe':
/tmp/linux-3.1-rc9/drivers/staging/nvec/nvec.c:373: undefined reference to `nvec_kbd_init'
make: *** [.tmp_vmlinux1] Error 1
Fixed by #ifdef:ing the call to nvec_kbd_init(), similar to the
existing #ifdef CONFIG_SERIO_NVEC_PS2 around the nvec_ps2() call.
Signed-off-by: Mikael Pettersson <mikpe-1zs4UD6AkMk@public.gmane.org>
---
--- linux-3.1-rc9/drivers/staging/nvec/nvec.c.~1~ 2011-10-08 16:28:20.000000000 +0200
+++ linux-3.1-rc9/drivers/staging/nvec/nvec.c 2011-10-08 19:09:18.000000000 +0200
@@ -370,7 +370,9 @@ static int __devinit tegra_nvec_probe(st
nvec_write_async(nvec, EC_ENABLE_EVENT_REPORTING,
sizeof(EC_ENABLE_EVENT_REPORTING));
+#ifdef CONFIG_KEYBOARD_NVEC
nvec_kbd_init(nvec);
+#endif
#ifdef CONFIG_SERIO_NVEC_PS2
nvec_ps2(nvec);
#endif
^ permalink raw reply [flat|nested] 8+ messages in thread[parent not found: <20112.34922.209107.730268-tgku4HJDRZih8lFjZTKsyTAV6s6igYVG@public.gmane.org>]
* Re: [PATCH] fix drivers/staging/nvec linkage error when keyboard is disabled [not found] ` <20112.34922.209107.730268-tgku4HJDRZih8lFjZTKsyTAV6s6igYVG@public.gmane.org> @ 2011-10-09 15:47 ` Marc Dietrich 2011-10-10 17:25 ` Stephen Warren 0 siblings, 1 reply; 8+ messages in thread From: Marc Dietrich @ 2011-10-09 15:47 UTC (permalink / raw) To: Mikael Pettersson Cc: linux-tegra-u79uwXL29TY76Z2rM5mHXA, linux-kernel-u79uwXL29TY76Z2rM5mHXA, Julian Andres Klode, devel-gWbeCf7V1WCQmaza687I9mD2FQJk+8+b, Leon Romanovsky Hi Mikael, thanks for review. The nvec driver received some overhaul in the 3.1 release cycle and he fruids can be viewed in linux-next tree. The nvec client drivers were converted to mfd children in the mean time. This solves the build error, but is not very flexible. We are planing to move the mfd stuct to the board file(s) in the next cycle. Also the maintainers were added. If you still find problems, please send email to the linux driver developemnt project and cc Julian and me. You may also check our development tree at http://gitorious.org/ac100/marvin24s-tree. Thanks Marc Am Samstag, 8. Oktober 2011, 19:29:14 schrieb Mikael Pettersson: > Building linux-3.1-rc9 for the Tegra ARM SoC with CONFIG_MFD_NVEC=y > and CONFIG_KEYBOARD_NVEC=n results in the following linkage error: > > drivers/built-in.o: In function `tegra_nvec_probe': > /tmp/linux-3.1-rc9/drivers/staging/nvec/nvec.c:373: undefined reference to > `nvec_kbd_init' make: *** [.tmp_vmlinux1] Error 1 > > Fixed by #ifdef:ing the call to nvec_kbd_init(), similar to the > existing #ifdef CONFIG_SERIO_NVEC_PS2 around the nvec_ps2() call. > > Signed-off-by: Mikael Pettersson <mikpe-1zs4UD6AkMk@public.gmane.org> > --- > > --- linux-3.1-rc9/drivers/staging/nvec/nvec.c.~1~ 2011-10-08 16:28:20.000000000 > +0200 +++ linux-3.1-rc9/drivers/staging/nvec/nvec.c 2011-10-08 19:09:18.000000000 > +0200 @@ -370,7 +370,9 @@ static int __devinit tegra_nvec_probe(st > nvec_write_async(nvec, EC_ENABLE_EVENT_REPORTING, > sizeof(EC_ENABLE_EVENT_REPORTING)); > > +#ifdef CONFIG_KEYBOARD_NVEC > nvec_kbd_init(nvec); > +#endif > #ifdef CONFIG_SERIO_NVEC_PS2 > nvec_ps2(nvec); > #endif > -- > To unsubscribe from this list: send the line "unsubscribe linux-tegra" in > the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply [flat|nested] 8+ messages in thread
* RE: [PATCH] fix drivers/staging/nvec linkage error when keyboard is disabled 2011-10-09 15:47 ` Marc Dietrich @ 2011-10-10 17:25 ` Stephen Warren [not found] ` <74CDBE0F657A3D45AFBB94109FB122FF173B23B539-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org> 0 siblings, 1 reply; 8+ messages in thread From: Stephen Warren @ 2011-10-10 17:25 UTC (permalink / raw) To: Marc Dietrich, Mikael Pettersson, Olof Johansson (olof@lixom.net), Greg KH (gregkh@suse.de) Cc: devel@driverdev.osuosl.org, linux-kernel@vger.kernel.org, Colin Cross (ccross@android.com), linux-tegra@vger.kernel.org Marc Dietrich wrote at Sunday, October 09, 2011 9:48 AM: > Hi Mikael, > > thanks for review. The nvec driver received some overhaul in the 3.1 release cycle > and he fruids can be viewed in linux-next tree. The nvec client drivers were > converted to mfd children in the mean time. This solves the build error, but is not > very flexible. We are planing to move the mfd stuct to the board file(s) in the next > cycle. Indeed, the code in v3.1-rc9 is quite different to that in linux-next, so this exact problem doesn't exist in linux-next. However, don't we still want to solve build problems for the final v3.1 release, or a stable update to that? As such, Acked-by: Stephen Warren <swarren@nvidia.com> I also CC'd the staging maintainer Greg KH and Tegra maintainers Olof and Colin on this email. > Also the maintainers were added. If you still find problems, please send email to the > linux driver developemnt project and cc Julian and me. You may also check our > development tree at http://gitorious.org/ac100/marvin24s-tree. > > Thanks > > Marc > > Am Samstag, 8. Oktober 2011, 19:29:14 schrieb Mikael Pettersson: > > Building linux-3.1-rc9 for the Tegra ARM SoC with CONFIG_MFD_NVEC=y > > and CONFIG_KEYBOARD_NVEC=n results in the following linkage error: > > > > drivers/built-in.o: In function `tegra_nvec_probe': > > /tmp/linux-3.1-rc9/drivers/staging/nvec/nvec.c:373: undefined reference to > > `nvec_kbd_init' make: *** [.tmp_vmlinux1] Error 1 > > > > Fixed by #ifdef:ing the call to nvec_kbd_init(), similar to the > > existing #ifdef CONFIG_SERIO_NVEC_PS2 around the nvec_ps2() call. > > > > Signed-off-by: Mikael Pettersson <mikpe@it.uu.se> > > --- > > > > --- linux-3.1-rc9/drivers/staging/nvec/nvec.c.~1~ 2011-10-08 16:28:20.000000000 > > +0200 +++ linux-3.1-rc9/drivers/staging/nvec/nvec.c 2011-10-08 19:09:18.000000000 > > +0200 @@ -370,7 +370,9 @@ static int __devinit tegra_nvec_probe(st > > nvec_write_async(nvec, EC_ENABLE_EVENT_REPORTING, > > sizeof(EC_ENABLE_EVENT_REPORTING)); > > > > +#ifdef CONFIG_KEYBOARD_NVEC > > nvec_kbd_init(nvec); > > +#endif > > #ifdef CONFIG_SERIO_NVEC_PS2 > > nvec_ps2(nvec); > > #endif -- nvpublic ^ permalink raw reply [flat|nested] 8+ messages in thread
[parent not found: <74CDBE0F657A3D45AFBB94109FB122FF173B23B539-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>]
* Re: [PATCH] fix drivers/staging/nvec linkage error when keyboard is disabled [not found] ` <74CDBE0F657A3D45AFBB94109FB122FF173B23B539-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org> @ 2011-10-10 20:20 ` Julian Andres Klode [not found] ` <20111010202011.GA7220-4HMq4SXA452hPH1hqNUYSQ@public.gmane.org> 2011-10-17 22:20 ` [PATCH] fix drivers/staging/nvec linkage error when keyboard is disabled Greg KH 1 sibling, 1 reply; 8+ messages in thread From: Julian Andres Klode @ 2011-10-10 20:20 UTC (permalink / raw) To: Stephen Warren Cc: Marc Dietrich, Mikael Pettersson, Olof Johansson (olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org), Greg KH (gregkh-l3A5Bk7waGM@public.gmane.org), linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, devel-gWbeCf7V1WCQmaza687I9mD2FQJk+8+b@public.gmane.org, Leon Romanovsky, Colin Cross (ccross-z5hGa2qSFaRBDgjK7y7TUQ@public.gmane.org) On Mon, Oct 10, 2011 at 10:25:07AM -0700, Stephen Warren wrote: > Marc Dietrich wrote at Sunday, October 09, 2011 9:48 AM: > > Hi Mikael, > > > > thanks for review. The nvec driver received some overhaul in the 3.1 release cycle > > and he fruids can be viewed in linux-next tree. The nvec client drivers were > > converted to mfd children in the mean time. This solves the build error, but is not > > very flexible. We are planing to move the mfd stuct to the board file(s) in the next > > cycle. > > Indeed, the code in v3.1-rc9 is quite different to that in linux-next, so > this exact problem doesn't exist in linux-next. > > However, don't we still want to solve build problems for the final v3.1 > release, or a stable update to that? As such, > > Acked-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> Acked-by: Julian Andres Klode <jak-4HMq4SXA452hPH1hqNUYSQ@public.gmane.org> But I should also add that there are probably more build failures due to dependencies, as there are no dependencies specified in Kconfig (so basically all nvec-* modules are subject to build failure if there dependencies are not enabled (INPUT/SERIO/whatever). There's a patch in -staging and -next for that, it may need adoption for 3.1 but would be needed to fix all build failures. I do not have good internet currently and am busy, so I can't do anything to fix those problems, but I should have time and connection to review patches for 3.1 (perhaps adapted from the -staging one). > > Am Samstag, 8. Oktober 2011, 19:29:14 schrieb Mikael Pettersson: > > > Building linux-3.1-rc9 for the Tegra ARM SoC with CONFIG_MFD_NVEC=y > > > and CONFIG_KEYBOARD_NVEC=n results in the following linkage error: > > > > > > drivers/built-in.o: In function `tegra_nvec_probe': > > > /tmp/linux-3.1-rc9/drivers/staging/nvec/nvec.c:373: undefined reference to > > > `nvec_kbd_init' make: *** [.tmp_vmlinux1] Error 1 > > > > > > Fixed by #ifdef:ing the call to nvec_kbd_init(), similar to the > > > existing #ifdef CONFIG_SERIO_NVEC_PS2 around the nvec_ps2() call. > > > > > > Signed-off-by: Mikael Pettersson <mikpe-1zs4UD6AkMk@public.gmane.org> > > > --- > > > > > > --- linux-3.1-rc9/drivers/staging/nvec/nvec.c.~1~ 2011-10-08 16:28:20.000000000 > > > +0200 +++ linux-3.1-rc9/drivers/staging/nvec/nvec.c 2011-10-08 19:09:18.000000000 > > > +0200 @@ -370,7 +370,9 @@ static int __devinit tegra_nvec_probe(st > > > nvec_write_async(nvec, EC_ENABLE_EVENT_REPORTING, > > > sizeof(EC_ENABLE_EVENT_REPORTING)); > > > > > > +#ifdef CONFIG_KEYBOARD_NVEC > > > nvec_kbd_init(novec); > > > +#endif > > > #ifdef CONFIG_SERIO_NVEC_PS2 > > > nvec_ps2(nvec); > > > #endif > Live long and prosper! -- Julian Andres Klode - Debian Developer, Ubuntu Member See http://wiki.debian.org/JulianAndresKlode and http://jak-linux.org/. ^ permalink raw reply [flat|nested] 8+ messages in thread
[parent not found: <20111010202011.GA7220-4HMq4SXA452hPH1hqNUYSQ@public.gmane.org>]
* Re: Re: [PATCH] fix drivers/staging/nvec linkage error when keyboard isdisabled [not found] ` <20111010202011.GA7220-4HMq4SXA452hPH1hqNUYSQ@public.gmane.org> @ 2011-10-11 8:15 ` Marc Dietrich 2011-10-12 9:19 ` Julian Andres Klode 0 siblings, 1 reply; 8+ messages in thread From: Marc Dietrich @ 2011-10-11 8:15 UTC (permalink / raw) To: Julian Andres Klode Cc: Stephen Warren, Mikael Pettersson, Olof Johansson (olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org), Greg KH (gregkh-l3A5Bk7waGM@public.gmane.org), linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, devel-gWbeCf7V1WCQmaza687I9mD2FQJk+8+b@public.gmane.org, Leon Romanovsky, Colin Cross (ccross-z5hGa2qSFaRBDgjK7y7TUQ@public.gmane.org) Am Montag, 10. Oktober 2011, 22:20:11 schrieb Julian Andres Klode: > On Mon, Oct 10, 2011 at 10:25:07AM -0700, Stephen Warren wrote: > > Marc Dietrich wrote at Sunday, October 09, 2011 9:48 AM: > > > Hi Mikael, > > > > > > thanks for review. The nvec driver received some overhaul in the 3.1 > > > release cycle and he fruids can be viewed in linux-next tree. The nvec > > > client drivers were converted to mfd children in the mean time. This > > > solves the build error, but is not very flexible. We are planing to move > > > the mfd stuct to the board file(s) in the next cycle. > > > > Indeed, the code in v3.1-rc9 is quite different to that in linux-next, so > > this exact problem doesn't exist in linux-next. > > > > However, don't we still want to solve build problems for the final v3.1 > > release, or a stable update to that? As such, > > > > Acked-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > Acked-by: Julian Andres Klode <jak-4HMq4SXA452hPH1hqNUYSQ@public.gmane.org> > > But I should also add that there are probably more build failures due to > dependencies, as there are no dependencies specified in Kconfig (so basically > all nvec-* modules are subject to build failure if there dependencies > are not enabled (INPUT/SERIO/whatever). There's a patch in -staging > and -next for that, it may need adoption for 3.1 but would be needed > to fix all build failures. well, I consider these as minor problems. Up to now, we have no users of the driver and anyone who wants to build it should know what he does (e.g. patch a board file, choose the right config). Having said that, I want to submit a patch in the next days which adds nvec support to the paz00 board file. If it's not to late for 3.2, I will also patch the nvec Makefile to fix possible build problems Julian mentioned. Otherwise it will be 3.3 stuff. Marc > I do not have good internet currently and am busy, so I can't > do anything to fix those problems, but I should have time > and connection to review patches for 3.1 (perhaps adapted > from the -staging one). > > > > Am Samstag, 8. Oktober 2011, 19:29:14 schrieb Mikael Pettersson: > > > > Building linux-3.1-rc9 for the Tegra ARM SoC with CONFIG_MFD_NVEC=y > > > > and CONFIG_KEYBOARD_NVEC=n results in the following linkage error: > > > > > > > > drivers/built-in.o: In function `tegra_nvec_probe': > > > > /tmp/linux-3.1-rc9/drivers/staging/nvec/nvec.c:373: undefined reference > > > > to > > > > `nvec_kbd_init' make: *** [.tmp_vmlinux1] Error 1 > > > > > > > > Fixed by #ifdef:ing the call to nvec_kbd_init(), similar to the > > > > existing #ifdef CONFIG_SERIO_NVEC_PS2 around the nvec_ps2() call. > > > > > > > > Signed-off-by: Mikael Pettersson <mikpe-1zs4UD6AkMk@public.gmane.org> > > > > --- > > > > > > > > --- linux-3.1-rc9/drivers/staging/nvec/nvec.c.~1~ 2011-10-08 > > > > 16:28:20.000000000 +0200 +++ > > > > linux-3.1-rc9/drivers/staging/nvec/nvec.c 2011-10-08 > > > > 19:09:18.000000000 +0200 @@ -370,7 +370,9 @@ static int __devinit > > > > tegra_nvec_probe(st > > > > > > > > nvec_write_async(nvec, EC_ENABLE_EVENT_REPORTING, > > > > > > > > sizeof(EC_ENABLE_EVENT_REPORTING)); > > > > > > > > +#ifdef CONFIG_KEYBOARD_NVEC > > > > > > > > nvec_kbd_init(novec); > > > > > > > > +#endif > > > > > > > > #ifdef CONFIG_SERIO_NVEC_PS2 > > > > > > > > nvec_ps2(nvec); > > > > > > > > #endif > > Live long and prosper! ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: Re: [PATCH] fix drivers/staging/nvec linkage error when keyboard isdisabled 2011-10-11 8:15 ` Re: [PATCH] fix drivers/staging/nvec linkage error when keyboard isdisabled Marc Dietrich @ 2011-10-12 9:19 ` Julian Andres Klode 0 siblings, 0 replies; 8+ messages in thread From: Julian Andres Klode @ 2011-10-12 9:19 UTC (permalink / raw) To: Marc Dietrich Cc: Stephen Warren, Mikael Pettersson, Olof Johansson (olof@lixom.net), Greg KH (gregkh@suse.de), linux-tegra@vger.kernel.org, linux-kernel@vger.kernel.org, devel@driverdev.osuosl.org, Leon Romanovsky, Colin Cross (ccross@android.com) On Tue, Oct 11, 2011 at 10:15:26AM +0200, Marc Dietrich wrote: > Am Montag, 10. Oktober 2011, 22:20:11 schrieb Julian Andres Klode: > > On Mon, Oct 10, 2011 at 10:25:07AM -0700, Stephen Warren wrote: > > > Marc Dietrich wrote at Sunday, October 09, 2011 9:48 AM: > > > > Hi Mikael, > > > > > > > > thanks for review. The nvec driver received some overhaul in the 3.1 > > > > release cycle and he fruids can be viewed in linux-next tree. The nvec > > > > client drivers were converted to mfd children in the mean time. This > > > > solves the build error, but is not very flexible. We are planing to move > > > > the mfd stuct to the board file(s) in the next cycle. > > > > > > Indeed, the code in v3.1-rc9 is quite different to that in linux-next, so > > > this exact problem doesn't exist in linux-next. > > > > > > However, don't we still want to solve build problems for the final v3.1 > > > release, or a stable update to that? As such, > > > > > > Acked-by: Stephen Warren <swarren@nvidia.com> > > > > Acked-by: Julian Andres Klode <jak@jak-linux.org> > > > > But I should also add that there are probably more build failures due to > > dependencies, as there are no dependencies specified in Kconfig (so basically > > all nvec-* modules are subject to build failure if there dependencies > > are not enabled (INPUT/SERIO/whatever). There's a patch in -staging > > and -next for that, it may need adoption for 3.1 but would be needed > > to fix all build failures. > > well, I consider these as minor problems. Up to now, we have no users of the driver > and anyone who wants to build it should know what he does (e.g. patch a board file, > choose the right config). Well yes, but that's not a reason not to fix it. For example, think about people doing automated test building of newer kernel versions that answer yes to every new question, their build could break. > > Having said that, I want to submit a patch in the next days which adds nvec support > to the paz00 board file. If it's not to late for 3.2, I will also patch the nvec > Makefile to fix possible build problems Julian mentioned. Otherwise it will be 3.3 > stuff. Well, we do have a correct Kconfig in staging (as in: should not cause build failures). The other patch you have is also slightly wrong currently, it selects an option (LEDS_CLASS) that depends on other options -- Julian Andres Klode - Debian Developer, Ubuntu Member See http://wiki.debian.org/JulianAndresKlode and http://jak-linux.org/. ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH] fix drivers/staging/nvec linkage error when keyboard is disabled [not found] ` <74CDBE0F657A3D45AFBB94109FB122FF173B23B539-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org> 2011-10-10 20:20 ` Julian Andres Klode @ 2011-10-17 22:20 ` Greg KH [not found] ` <20111017222019.GA2410-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org> 1 sibling, 1 reply; 8+ messages in thread From: Greg KH @ 2011-10-17 22:20 UTC (permalink / raw) To: Stephen Warren Cc: Marc Dietrich, Mikael Pettersson, Olof Johansson (olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org), Greg KH (gregkh-l3A5Bk7waGM@public.gmane.org), linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Julian Andres Klode, devel-gWbeCf7V1WCQmaza687I9mD2FQJk+8+b@public.gmane.org, Leon Romanovsky, Colin Cross (ccross-z5hGa2qSFaRBDgjK7y7TUQ@public.gmane.org) On Mon, Oct 10, 2011 at 10:25:07AM -0700, Stephen Warren wrote: > Marc Dietrich wrote at Sunday, October 09, 2011 9:48 AM: > > Hi Mikael, > > > > thanks for review. The nvec driver received some overhaul in the 3.1 release cycle > > and he fruids can be viewed in linux-next tree. The nvec client drivers were > > converted to mfd children in the mean time. This solves the build error, but is not > > very flexible. We are planing to move the mfd stuct to the board file(s) in the next > > cycle. > > Indeed, the code in v3.1-rc9 is quite different to that in linux-next, so > this exact problem doesn't exist in linux-next. > > However, don't we still want to solve build problems for the final v3.1 > release, or a stable update to that? As such, > > Acked-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > I also CC'd the staging maintainer Greg KH and Tegra maintainers Olof and > Colin on this email. I'm confused, what patch should I apply here? Can someone please resend it in a format that I can apply it in? With the proper acks? thanks, greg k-h ^ permalink raw reply [flat|nested] 8+ messages in thread
[parent not found: <20111017222019.GA2410-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>]
* Re: [PATCH] fix drivers/staging/nvec linkage error when keyboard is disabled [not found] ` <20111017222019.GA2410-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org> @ 2011-10-17 22:20 ` Greg KH 0 siblings, 0 replies; 8+ messages in thread From: Greg KH @ 2011-10-17 22:20 UTC (permalink / raw) To: Stephen Warren Cc: Marc Dietrich, Mikael Pettersson, Olof Johansson (olof-nZhT3qVonbNeoWH0uzbU5w@public.gmane.org), Greg KH (gregkh-l3A5Bk7waGM@public.gmane.org), linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Julian Andres Klode, devel-gWbeCf7V1WCQmaza687I9mD2FQJk+8+b@public.gmane.org, Leon Romanovsky, Colin Cross (ccross-z5hGa2qSFaRBDgjK7y7TUQ@public.gmane.org) On Mon, Oct 17, 2011 at 03:20:19PM -0700, Greg KH wrote: > On Mon, Oct 10, 2011 at 10:25:07AM -0700, Stephen Warren wrote: > > Marc Dietrich wrote at Sunday, October 09, 2011 9:48 AM: > > > Hi Mikael, > > > > > > thanks for review. The nvec driver received some overhaul in the 3.1 release cycle > > > and he fruids can be viewed in linux-next tree. The nvec client drivers were > > > converted to mfd children in the mean time. This solves the build error, but is not > > > very flexible. We are planing to move the mfd stuct to the board file(s) in the next > > > cycle. > > > > Indeed, the code in v3.1-rc9 is quite different to that in linux-next, so > > this exact problem doesn't exist in linux-next. > > > > However, don't we still want to solve build problems for the final v3.1 > > release, or a stable update to that? As such, > > > > Acked-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > > > I also CC'd the staging maintainer Greg KH and Tegra maintainers Olof and > > Colin on this email. > > I'm confused, what patch should I apply here? Can someone please resend > it in a format that I can apply it in? With the proper acks? Nevermind, it already was, sorry for the noise... ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2011-10-17 22:20 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-08 17:29 [PATCH] fix drivers/staging/nvec linkage error when keyboard is disabled Mikael Pettersson
[not found] ` <20112.34922.209107.730268-tgku4HJDRZih8lFjZTKsyTAV6s6igYVG@public.gmane.org>
2011-10-09 15:47 ` Marc Dietrich
2011-10-10 17:25 ` Stephen Warren
[not found] ` <74CDBE0F657A3D45AFBB94109FB122FF173B23B539-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
2011-10-10 20:20 ` Julian Andres Klode
[not found] ` <20111010202011.GA7220-4HMq4SXA452hPH1hqNUYSQ@public.gmane.org>
2011-10-11 8:15 ` Re: [PATCH] fix drivers/staging/nvec linkage error when keyboard isdisabled Marc Dietrich
2011-10-12 9:19 ` Julian Andres Klode
2011-10-17 22:20 ` [PATCH] fix drivers/staging/nvec linkage error when keyboard is disabled Greg KH
[not found] ` <20111017222019.GA2410-U8xfFu+wG4EAvxtiuMwx3w@public.gmane.org>
2011-10-17 22:20 ` Greg KH
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox