* [PATCH] Staging: Android logger: fix compiling error
@ 2009-10-23 16:52 Bryan Wu
2009-10-27 4:40 ` Eric Miao
0 siblings, 1 reply; 14+ messages in thread
From: Bryan Wu @ 2009-10-23 16:52 UTC (permalink / raw)
To: gregkh; +Cc: linux-kernel, kernel-team
When compiling Android staging driver for PXA3XX machine, met following error:
CC drivers/staging/android/logger.o
drivers/staging/android/logger.c: In function 'logger_read':
drivers/staging/android/logger.c:165: error: 'TASK_INTERRUPTIBLE' undeclared (first use in this function)
drivers/staging/android/logger.c:165: error: (Each undeclared identifier is reported only once
drivers/staging/android/logger.c:165: error: for each function it appears in.)
drivers/staging/android/logger.c:178: error: implicit declaration of function 'signal_pending'
drivers/staging/android/logger.c:183: error: implicit declaration of function 'schedule'
drivers/staging/android/logger.c: In function 'logger_aio_write':
drivers/staging/android/logger.c:325: error: dereferencing pointer to incomplete type
drivers/staging/android/logger.c:333: error: dereferencing pointer to incomplete type
drivers/staging/android/logger.c:334: error: dereferencing pointer to incomplete type
drivers/staging/android/logger.c:337: error: dereferencing pointer to incomplete type
drivers/staging/android/logger.c:360: error: dereferencing pointer to incomplete type
drivers/staging/android/logger.c:363: error: dereferencing pointer to incomplete type
drivers/staging/android/logger.c:370: error: increment of pointer to unknown structure
drivers/staging/android/logger.c:370: error: arithmetic on pointer to an incomplete type
drivers/staging/android/logger.c:377: error: 'TASK_INTERRUPTIBLE' undeclared (first use in this function)
make[3]: *** [drivers/staging/android/logger.o] Error 1
Compiling broke since commit a99bbaf5ee6bad1aca0c88ea65ec6e5373e86184
headers: remove sched.h from poll.h
Adding <linux/sched.h> to fix this compiling bug.
Cc: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Bryan Wu <bryan.wu@canonical.com>
---
drivers/staging/android/logger.c | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/drivers/staging/android/logger.c b/drivers/staging/android/logger.c
index 6c10b45..a8eb7d1 100644
--- a/drivers/staging/android/logger.c
+++ b/drivers/staging/android/logger.c
@@ -21,6 +21,7 @@
#include <linux/fs.h>
#include <linux/miscdevice.h>
#include <linux/uaccess.h>
+#include <linux/sched.h>
#include <linux/poll.h>
#include <linux/time.h>
#include "logger.h"
--
1.6.3.3
^ permalink raw reply related [flat|nested] 14+ messages in thread* Re: [PATCH] Staging: Android logger: fix compiling error 2009-10-23 16:52 [PATCH] Staging: Android logger: fix compiling error Bryan Wu @ 2009-10-27 4:40 ` Eric Miao 2009-10-27 4:42 ` Bryan Wu 2009-10-27 14:05 ` Greg KH 0 siblings, 2 replies; 14+ messages in thread From: Eric Miao @ 2009-10-27 4:40 UTC (permalink / raw) To: Bryan Wu; +Cc: gregkh, kernel-team, linux-kernel > Compiling broke since commit a99bbaf5ee6bad1aca0c88ea65ec6e5373e86184 > headers: remove sched.h from poll.h > > Adding <linux/sched.h> to fix this compiling bug. > Bryan, Is this something caused by incorrect pxa header files? > Cc: Alexey Dobriyan <adobriyan@gmail.com> > Signed-off-by: Bryan Wu <bryan.wu@canonical.com> > --- > drivers/staging/android/logger.c | 1 + > 1 files changed, 1 insertions(+), 0 deletions(-) > > diff --git a/drivers/staging/android/logger.c b/drivers/staging/android/logger.c > index 6c10b45..a8eb7d1 100644 > --- a/drivers/staging/android/logger.c > +++ b/drivers/staging/android/logger.c > @@ -21,6 +21,7 @@ > #include <linux/fs.h> > #include <linux/miscdevice.h> > #include <linux/uaccess.h> > +#include <linux/sched.h> > #include <linux/poll.h> > #include <linux/time.h> > #include "logger.h" > -- > 1.6.3.3 > > > -- > kernel-team mailing list > kernel-team@lists.ubuntu.com > https://lists.ubuntu.com/mailman/listinfo/kernel-team > ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] Staging: Android logger: fix compiling error 2009-10-27 4:40 ` Eric Miao @ 2009-10-27 4:42 ` Bryan Wu 2009-10-27 14:05 ` Greg KH 1 sibling, 0 replies; 14+ messages in thread From: Bryan Wu @ 2009-10-27 4:42 UTC (permalink / raw) To: Eric Miao; +Cc: gregkh, kernel-team, linux-kernel Eric Miao wrote: >> Compiling broke since commit a99bbaf5ee6bad1aca0c88ea65ec6e5373e86184 >> headers: remove sched.h from poll.h >> >> Adding <linux/sched.h> to fix this compiling bug. >> > > Bryan, > > Is this something caused by incorrect pxa header files? > No. the commit a99bbaf5ee6bad1aca0c88ea65ec6e5373e86184 missed to fix this issue in Android driver. It fixed others. I just added it back. -Bryan ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] Staging: Android logger: fix compiling error 2009-10-27 4:40 ` Eric Miao 2009-10-27 4:42 ` Bryan Wu @ 2009-10-27 14:05 ` Greg KH 2009-10-29 1:01 ` Bryan Wu 1 sibling, 1 reply; 14+ messages in thread From: Greg KH @ 2009-10-27 14:05 UTC (permalink / raw) To: Eric Miao; +Cc: Bryan Wu, kernel-team, linux-kernel On Tue, Oct 27, 2009 at 12:40:07PM +0800, Eric Miao wrote: > > Compiling broke since commit a99bbaf5ee6bad1aca0c88ea65ec6e5373e86184 > > headers: remove sched.h from poll.h > > > > Adding <linux/sched.h> to fix this compiling bug. I have now just marked the android drivers as broken, as this is not the only build error in them at the moment :( thanks, greg k-h ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] Staging: Android logger: fix compiling error 2009-10-27 14:05 ` Greg KH @ 2009-10-29 1:01 ` Bryan Wu 2009-10-29 1:04 ` Greg KH 0 siblings, 1 reply; 14+ messages in thread From: Bryan Wu @ 2009-10-29 1:01 UTC (permalink / raw) To: Greg KH, Brian Swetland; +Cc: Eric Miao, kernel-team, linux-kernel Greg KH wrote: > On Tue, Oct 27, 2009 at 12:40:07PM +0800, Eric Miao wrote: >>> Compiling broke since commit a99bbaf5ee6bad1aca0c88ea65ec6e5373e86184 >>> headers: remove sched.h from poll.h >>> >>> Adding <linux/sched.h> to fix this compiling bug. > > I have now just marked the android drivers as broken, as this is not the > only build error in them at the moment :( > Yeah, actually the drivers/staging/android/lowmemorykiller.c has been failing to compile for a long time, because that struct mm_struct does not have a field named oom_adj. All the Android drivers are compiled as modules in Ubuntu kernel package, except this one. Although Android public kernel is still in 2.6.29, it's own driver is totally different with our mainline staging version. Is there any plan to sync with it? Thanks, -Bryan ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] Staging: Android logger: fix compiling error 2009-10-29 1:01 ` Bryan Wu @ 2009-10-29 1:04 ` Greg KH 2009-10-29 1:11 ` Bryan Wu 0 siblings, 1 reply; 14+ messages in thread From: Greg KH @ 2009-10-29 1:04 UTC (permalink / raw) To: Bryan Wu; +Cc: Brian Swetland, Eric Miao, kernel-team, linux-kernel On Thu, Oct 29, 2009 at 09:01:07AM +0800, Bryan Wu wrote: > Greg KH wrote: > > On Tue, Oct 27, 2009 at 12:40:07PM +0800, Eric Miao wrote: > >>> Compiling broke since commit a99bbaf5ee6bad1aca0c88ea65ec6e5373e86184 > >>> headers: remove sched.h from poll.h > >>> > >>> Adding <linux/sched.h> to fix this compiling bug. > > > > I have now just marked the android drivers as broken, as this is not the > > only build error in them at the moment :( > > > > Yeah, actually the drivers/staging/android/lowmemorykiller.c has been > failing to compile for a long time, because that struct mm_struct does > not have a field named oom_adj. All the Android drivers are compiled > as modules in Ubuntu kernel package, except this one. > > Although Android public kernel is still in 2.6.29, it's own driver is > totally different with our mainline staging version. Is there any plan > to sync with it? No, Google has abandoned any current effort to push code upstream for the past year :( The android drivers are deleted in linux-next and will go away in 2.6.33 because of this. thanks, greg k-h ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] Staging: Android logger: fix compiling error 2009-10-29 1:04 ` Greg KH @ 2009-10-29 1:11 ` Bryan Wu 2009-10-29 1:17 ` Greg KH 0 siblings, 1 reply; 14+ messages in thread From: Bryan Wu @ 2009-10-29 1:11 UTC (permalink / raw) To: Greg KH; +Cc: Brian Swetland, Eric Miao, kernel-team, linux-kernel Greg KH wrote: > On Thu, Oct 29, 2009 at 09:01:07AM +0800, Bryan Wu wrote: >> Greg KH wrote: >>> On Tue, Oct 27, 2009 at 12:40:07PM +0800, Eric Miao wrote: >>>>> Compiling broke since commit a99bbaf5ee6bad1aca0c88ea65ec6e5373e86184 >>>>> headers: remove sched.h from poll.h >>>>> >>>>> Adding <linux/sched.h> to fix this compiling bug. >>> I have now just marked the android drivers as broken, as this is not the >>> only build error in them at the moment :( >>> >> Yeah, actually the drivers/staging/android/lowmemorykiller.c has been >> failing to compile for a long time, because that struct mm_struct does >> not have a field named oom_adj. All the Android drivers are compiled >> as modules in Ubuntu kernel package, except this one. >> >> Although Android public kernel is still in 2.6.29, it's own driver is >> totally different with our mainline staging version. Is there any plan >> to sync with it? > > No, Google has abandoned any current effort to push code upstream for > the past year :( > > The android drivers are deleted in linux-next and will go away in 2.6.33 > because of this. > Thanks a lot for this update. It looks like we need to consider to drop Android modules in our Ubuntu kernel building somehow. Cheers, -Bryan ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] Staging: Android logger: fix compiling error 2009-10-29 1:11 ` Bryan Wu @ 2009-10-29 1:17 ` Greg KH 2009-10-29 1:27 ` Bryan Wu 0 siblings, 1 reply; 14+ messages in thread From: Greg KH @ 2009-10-29 1:17 UTC (permalink / raw) To: Bryan Wu; +Cc: Brian Swetland, Eric Miao, kernel-team, linux-kernel On Thu, Oct 29, 2009 at 09:11:39AM +0800, Bryan Wu wrote: > Greg KH wrote: > > On Thu, Oct 29, 2009 at 09:01:07AM +0800, Bryan Wu wrote: > >> Greg KH wrote: > >>> On Tue, Oct 27, 2009 at 12:40:07PM +0800, Eric Miao wrote: > >>>>> Compiling broke since commit a99bbaf5ee6bad1aca0c88ea65ec6e5373e86184 > >>>>> headers: remove sched.h from poll.h > >>>>> > >>>>> Adding <linux/sched.h> to fix this compiling bug. > >>> I have now just marked the android drivers as broken, as this is not the > >>> only build error in them at the moment :( > >>> > >> Yeah, actually the drivers/staging/android/lowmemorykiller.c has been > >> failing to compile for a long time, because that struct mm_struct does > >> not have a field named oom_adj. All the Android drivers are compiled > >> as modules in Ubuntu kernel package, except this one. > >> > >> Although Android public kernel is still in 2.6.29, it's own driver is > >> totally different with our mainline staging version. Is there any plan > >> to sync with it? > > > > No, Google has abandoned any current effort to push code upstream for > > the past year :( > > > > The android drivers are deleted in linux-next and will go away in 2.6.33 > > because of this. > > > > Thanks a lot for this update. It looks like we need to consider to drop Android > modules in our Ubuntu kernel building somehow. As no one is using them, it should be trivial to just change your kernel config, right? thanks, greg k-h ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] Staging: Android logger: fix compiling error 2009-10-29 1:17 ` Greg KH @ 2009-10-29 1:27 ` Bryan Wu 2009-10-29 1:28 ` Greg KH 0 siblings, 1 reply; 14+ messages in thread From: Bryan Wu @ 2009-10-29 1:27 UTC (permalink / raw) To: Greg KH; +Cc: Brian Swetland, Eric Miao, kernel-team, linux-kernel Greg KH wrote: > On Thu, Oct 29, 2009 at 09:11:39AM +0800, Bryan Wu wrote: >> Greg KH wrote: >>> On Thu, Oct 29, 2009 at 09:01:07AM +0800, Bryan Wu wrote: >>>> Greg KH wrote: >>>>> On Tue, Oct 27, 2009 at 12:40:07PM +0800, Eric Miao wrote: >>>>>>> Compiling broke since commit a99bbaf5ee6bad1aca0c88ea65ec6e5373e86184 >>>>>>> headers: remove sched.h from poll.h >>>>>>> >>>>>>> Adding <linux/sched.h> to fix this compiling bug. >>>>> I have now just marked the android drivers as broken, as this is not the >>>>> only build error in them at the moment :( >>>>> >>>> Yeah, actually the drivers/staging/android/lowmemorykiller.c has been >>>> failing to compile for a long time, because that struct mm_struct does >>>> not have a field named oom_adj. All the Android drivers are compiled >>>> as modules in Ubuntu kernel package, except this one. >>>> >>>> Although Android public kernel is still in 2.6.29, it's own driver is >>>> totally different with our mainline staging version. Is there any plan >>>> to sync with it? >>> No, Google has abandoned any current effort to push code upstream for >>> the past year :( >>> >>> The android drivers are deleted in linux-next and will go away in 2.6.33 >>> because of this. >>> >> Thanks a lot for this update. It looks like we need to consider to drop Android >> modules in our Ubuntu kernel building somehow. > > As no one is using them, it should be trivial to just change your kernel > config, right? > The reason we include them is that we wanna port the Android runtime environment to Ubuntu. Then the Android applications can run on Android compatible Ubuntu OS directly without any modification. The Android runtime environment needs some Android drivers such as Binder. But now, it is hard for us to do that without a workable Android drivers in mainline. Thanks -Bryan ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] Staging: Android logger: fix compiling error 2009-10-29 1:27 ` Bryan Wu @ 2009-10-29 1:28 ` Greg KH 2009-10-29 1:55 ` Bryan Wu 0 siblings, 1 reply; 14+ messages in thread From: Greg KH @ 2009-10-29 1:28 UTC (permalink / raw) To: Bryan Wu; +Cc: Brian Swetland, Eric Miao, kernel-team, linux-kernel On Thu, Oct 29, 2009 at 09:27:40AM +0800, Bryan Wu wrote: > Greg KH wrote: > > On Thu, Oct 29, 2009 at 09:11:39AM +0800, Bryan Wu wrote: > >> Greg KH wrote: > >>> On Thu, Oct 29, 2009 at 09:01:07AM +0800, Bryan Wu wrote: > >>>> Greg KH wrote: > >>>>> On Tue, Oct 27, 2009 at 12:40:07PM +0800, Eric Miao wrote: > >>>>>>> Compiling broke since commit a99bbaf5ee6bad1aca0c88ea65ec6e5373e86184 > >>>>>>> headers: remove sched.h from poll.h > >>>>>>> > >>>>>>> Adding <linux/sched.h> to fix this compiling bug. > >>>>> I have now just marked the android drivers as broken, as this is not the > >>>>> only build error in them at the moment :( > >>>>> > >>>> Yeah, actually the drivers/staging/android/lowmemorykiller.c has been > >>>> failing to compile for a long time, because that struct mm_struct does > >>>> not have a field named oom_adj. All the Android drivers are compiled > >>>> as modules in Ubuntu kernel package, except this one. > >>>> > >>>> Although Android public kernel is still in 2.6.29, it's own driver is > >>>> totally different with our mainline staging version. Is there any plan > >>>> to sync with it? > >>> No, Google has abandoned any current effort to push code upstream for > >>> the past year :( > >>> > >>> The android drivers are deleted in linux-next and will go away in 2.6.33 > >>> because of this. > >>> > >> Thanks a lot for this update. It looks like we need to consider to drop Android > >> modules in our Ubuntu kernel building somehow. > > > > As no one is using them, it should be trivial to just change your kernel > > config, right? > > > > The reason we include them is that we wanna port the Android runtime environment > to Ubuntu. Then the Android applications can run on Android compatible Ubuntu OS > directly without any modification. > > The Android runtime environment needs some Android drivers such as Binder. Don't you also need the wakelocks and the hooks in the core of the kernel to tie into the binder mess? > But now, it is hard for us to do that without a workable Android drivers in > mainline. Then push on Google to get them cleaned up and fixed! Or do it yourself, all I need is a developer to take ownership of the code. thanks, greg k-h ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] Staging: Android logger: fix compiling error 2009-10-29 1:28 ` Greg KH @ 2009-10-29 1:55 ` Bryan Wu 2009-10-29 2:22 ` Brian Swetland 2009-10-30 14:08 ` Pavel Machek 0 siblings, 2 replies; 14+ messages in thread From: Bryan Wu @ 2009-10-29 1:55 UTC (permalink / raw) To: Greg KH; +Cc: Brian Swetland, Eric Miao, kernel-team, linux-kernel Greg KH wrote: > On Thu, Oct 29, 2009 at 09:27:40AM +0800, Bryan Wu wrote: >> Greg KH wrote: >>> On Thu, Oct 29, 2009 at 09:11:39AM +0800, Bryan Wu wrote: >>>> Greg KH wrote: >>>>> On Thu, Oct 29, 2009 at 09:01:07AM +0800, Bryan Wu wrote: >>>>>> Greg KH wrote: >>>>>>> On Tue, Oct 27, 2009 at 12:40:07PM +0800, Eric Miao wrote: >>>>>>>>> Compiling broke since commit a99bbaf5ee6bad1aca0c88ea65ec6e5373e86184 >>>>>>>>> headers: remove sched.h from poll.h >>>>>>>>> >>>>>>>>> Adding <linux/sched.h> to fix this compiling bug. >>>>>>> I have now just marked the android drivers as broken, as this is not the >>>>>>> only build error in them at the moment :( >>>>>>> >>>>>> Yeah, actually the drivers/staging/android/lowmemorykiller.c has been >>>>>> failing to compile for a long time, because that struct mm_struct does >>>>>> not have a field named oom_adj. All the Android drivers are compiled >>>>>> as modules in Ubuntu kernel package, except this one. >>>>>> >>>>>> Although Android public kernel is still in 2.6.29, it's own driver is >>>>>> totally different with our mainline staging version. Is there any plan >>>>>> to sync with it? >>>>> No, Google has abandoned any current effort to push code upstream for >>>>> the past year :( >>>>> >>>>> The android drivers are deleted in linux-next and will go away in 2.6.33 >>>>> because of this. >>>>> >>>> Thanks a lot for this update. It looks like we need to consider to drop Android >>>> modules in our Ubuntu kernel building somehow. >>> As no one is using them, it should be trivial to just change your kernel >>> config, right? >>> >> The reason we include them is that we wanna port the Android runtime environment >> to Ubuntu. Then the Android applications can run on Android compatible Ubuntu OS >> directly without any modification. >> >> The Android runtime environment needs some Android drivers such as Binder. > > Don't you also need the wakelocks and the hooks in the core of the > kernel to tie into the binder mess? > Yeah, that is complicated. -:( >> But now, it is hard for us to do that without a workable Android drivers in >> mainline. > > Then push on Google to get them cleaned up and fixed! Or do it > yourself, all I need is a developer to take ownership of the code. > I'm doing a task which is trying to merge Android patches to Ubuntu kernel and mainline, not only the Android drivers but also the ARM port code which is not in mainline. But since Android kernel is 2.6.29 and ours or mainline is 2.6.31+, you know it needs much more effort without Google's help. And for sure, I'm very happy to help this out. Cheers, -Bryan ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] Staging: Android logger: fix compiling error 2009-10-29 1:55 ` Bryan Wu @ 2009-10-29 2:22 ` Brian Swetland 2009-10-30 14:08 ` Pavel Machek 1 sibling, 0 replies; 14+ messages in thread From: Brian Swetland @ 2009-10-29 2:22 UTC (permalink / raw) To: Bryan Wu; +Cc: Greg KH, Eric Miao, kernel-team, linux-kernel On Wed, Oct 28, 2009 at 6:55 PM, Bryan Wu <bryan.wu@canonical.com> wrote: >>> But now, it is hard for us to do that without a workable Android drivers >>> in mainline. >> >> Then push on Google to get them cleaned up and fixed! Or do it >> yourself, all I need is a developer to take ownership of the code. > > I'm doing a task which is trying to merge Android patches to Ubuntu kernel > and mainline, not only the Android drivers but also the ARM port code which > is not in mainline. > > But since Android kernel is 2.6.29 and ours or mainline is 2.6.31+, you know > it needs much more effort without Google's help. > > And for sure, I'm very happy to help this out. We (Google) definitely want to get back in sync with mainline (as I've mentioned earlier in this or a related thread), and we're planning on snapping up our kernel trees to 2.6.32+ once we get past various deadlines in the near future. Obviously action speaks louder than words here, and I understand Greg's frustration at the slow pace so far and appreciate his efforts to encourage us to stop dropping the ball. Probably the two biggest pain points for general driver support are wakelocks (which we were making some progress on getting cleaned up on the linux-pm list -- Arve will be respinning those patchsets for review again before long) and some of the gpio support. Otherwise, most of the drivers don't have a lot of dependencies on new core kernel infrastructure and many effectively stand alone. For some of the qualcomm chipsets, there is a fair bit of layering needed for functions owned by the modem or dsp cores -- smem / smd / rpc / etc. Brian ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] Staging: Android logger: fix compiling error 2009-10-29 1:55 ` Bryan Wu 2009-10-29 2:22 ` Brian Swetland @ 2009-10-30 14:08 ` Pavel Machek 2009-11-01 16:40 ` Bryan Wu 1 sibling, 1 reply; 14+ messages in thread From: Pavel Machek @ 2009-10-30 14:08 UTC (permalink / raw) To: Bryan Wu; +Cc: Greg KH, Brian Swetland, Eric Miao, kernel-team, linux-kernel Hi! >>> But now, it is hard for us to do that without a workable Android >>> drivers in mainline. >> >> Then push on Google to get them cleaned up and fixed! Or do it >> yourself, all I need is a developer to take ownership of the code. >> > > I'm doing a task which is trying to merge Android patches to Ubuntu > kernel and mainline, not only the Android drivers but also the ARM port > code which is not in mainline. > > But since Android kernel is 2.6.29 and ours or mainline is 2.6.31+, you > know it needs much more effort without Google's help. > > And for sure, I'm very happy to help this out. I guess Greg will be happy to put android stuff back into staging if you promise to maintain it. That should be fairly low effort (hour per week?). Basically you have to respond to email, fix it when it breaks, and perhaps test compile it when -rc1 comes... Sounds easy enough, no? Pavel -- (english) http://www.livejournal.com/~pavelmachek (cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html ^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [PATCH] Staging: Android logger: fix compiling error 2009-10-30 14:08 ` Pavel Machek @ 2009-11-01 16:40 ` Bryan Wu 0 siblings, 0 replies; 14+ messages in thread From: Bryan Wu @ 2009-11-01 16:40 UTC (permalink / raw) To: Pavel Machek, Greg KH Cc: Brian Swetland, Eric Miao, kernel-team, linux-kernel Pavel Machek wrote: > Hi! > >>>> But now, it is hard for us to do that without a workable Android >>>> drivers in mainline. >>> Then push on Google to get them cleaned up and fixed! Or do it >>> yourself, all I need is a developer to take ownership of the code. >>> >> I'm doing a task which is trying to merge Android patches to Ubuntu >> kernel and mainline, not only the Android drivers but also the ARM port >> code which is not in mainline. >> >> But since Android kernel is 2.6.29 and ours or mainline is 2.6.31+, you >> know it needs much more effort without Google's help. >> >> And for sure, I'm very happy to help this out. > > I guess Greg will be happy to put android stuff back into staging if > you promise to maintain it. That should be fairly low effort (hour per > week?). Basically you have to respond to email, fix it when it breaks, > and perhaps test compile it when -rc1 comes... > > Sounds easy enough, no? > Pavel Great, I do love to maintain it with the help from Brian Swetland and other Google folks. Thanks a lot, Greg and Pavel. -Bryan ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2009-11-01 16:41 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2009-10-23 16:52 [PATCH] Staging: Android logger: fix compiling error Bryan Wu 2009-10-27 4:40 ` Eric Miao 2009-10-27 4:42 ` Bryan Wu 2009-10-27 14:05 ` Greg KH 2009-10-29 1:01 ` Bryan Wu 2009-10-29 1:04 ` Greg KH 2009-10-29 1:11 ` Bryan Wu 2009-10-29 1:17 ` Greg KH 2009-10-29 1:27 ` Bryan Wu 2009-10-29 1:28 ` Greg KH 2009-10-29 1:55 ` Bryan Wu 2009-10-29 2:22 ` Brian Swetland 2009-10-30 14:08 ` Pavel Machek 2009-11-01 16:40 ` Bryan Wu
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox