All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drivers: staging: dream: fix smd in makefile
@ 2010-05-06 23:48 Daniel Walker
  2010-05-06 23:54 ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel Walker @ 2010-05-06 23:48 UTC (permalink / raw)
  To: linux-kernel; +Cc: linux-arm-msm, Daniel Walker, Greg KH, Pavel Machek

Not sure about this one.. Cause if you apply this then some SMD files
don't compile anymore. There's some missing config options related to
AMSS.

NOT-Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
CC: Greg KH <greg@kroah.com>
Cc: Pavel Machek <pavel@ucw.cz>
---
 drivers/staging/dream/Makefile |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/drivers/staging/dream/Makefile b/drivers/staging/dream/Makefile
index 43d1eec..414a967 100644
--- a/drivers/staging/dream/Makefile
+++ b/drivers/staging/dream/Makefile
@@ -1,5 +1,6 @@
 EXTRA_CFLAGS=-Idrivers/staging/dream/include
-obj-$(CONFIG_MSM_ADSP)		+= qdsp5/ smd/
+obj-$(CONFIG_MSM_SMD)		+= smd/
+obj-$(CONFIG_MSM_ADSP)		+= qdsp5/
 obj-$(CONFIG_MSM_CAMERA)	+= camera/
 obj-$(CONFIG_INPUT_GPIO)	+= gpio_axis.o gpio_event.o gpio_input.o gpio_matrix.o gpio_output.o
 
-- 
1.7.0.4


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

* Re: [PATCH] drivers: staging: dream: fix smd in makefile
  2010-05-06 23:48 [PATCH] drivers: staging: dream: fix smd in makefile Daniel Walker
@ 2010-05-06 23:54 ` Greg KH
  2010-05-07  0:00   ` Daniel Walker
  0 siblings, 1 reply; 4+ messages in thread
From: Greg KH @ 2010-05-06 23:54 UTC (permalink / raw)
  To: Daniel Walker; +Cc: linux-kernel, linux-arm-msm, Pavel Machek

On Thu, May 06, 2010 at 04:48:59PM -0700, Daniel Walker wrote:
> Not sure about this one.. Cause if you apply this then some SMD files
> don't compile anymore. There's some missing config options related to
> AMSS.
> 
> NOT-Signed-off-by: Daniel Walker <dwalker@codeaurora.org>

Heh, I'm not going to apply this then :)

> CC: Greg KH <greg@kroah.com>
> Cc: Pavel Machek <pavel@ucw.cz>
> ---
>  drivers/staging/dream/Makefile |    3 ++-

With the recent progression of your arch tree, and the
wakelock/suspend-blocker stuff, what's the need for these files to still
be in the staging directory at all?  Can't it be deleted and it go
through your tree?

thanks,

greg k-h

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

* Re: [PATCH] drivers: staging: dream: fix smd in makefile
  2010-05-06 23:54 ` Greg KH
@ 2010-05-07  0:00   ` Daniel Walker
  2010-05-07 16:56     ` Greg KH
  0 siblings, 1 reply; 4+ messages in thread
From: Daniel Walker @ 2010-05-07  0:00 UTC (permalink / raw)
  To: Greg KH; +Cc: linux-kernel, linux-arm-msm, Pavel Machek

On Thu, 2010-05-06 at 16:54 -0700, Greg KH wrote:
> On Thu, May 06, 2010 at 04:48:59PM -0700, Daniel Walker wrote:
> > Not sure about this one.. Cause if you apply this then some SMD files
> > don't compile anymore. There's some missing config options related to
> > AMSS.
> > 
> > NOT-Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
> 
> Heh, I'm not going to apply this then :)
> 
> > CC: Greg KH <greg@kroah.com>
> > Cc: Pavel Machek <pavel@ucw.cz>
> > ---
> >  drivers/staging/dream/Makefile |    3 ++-
> 
> With the recent progression of your arch tree, and the
> wakelock/suspend-blocker stuff, what's the need for these files to still
> be in the staging directory at all?  Can't it be deleted and it go
> through your tree?

Yeah, all the smd stuff can .. The rest of it should stay for now I
think. I'm not ready to take on those other specific drivers, like the
camera etc..

Should I just send a patch to drop the whole SMD directory then?

Daniel


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

* Re: [PATCH] drivers: staging: dream: fix smd in makefile
  2010-05-07  0:00   ` Daniel Walker
@ 2010-05-07 16:56     ` Greg KH
  0 siblings, 0 replies; 4+ messages in thread
From: Greg KH @ 2010-05-07 16:56 UTC (permalink / raw)
  To: Daniel Walker; +Cc: linux-kernel, linux-arm-msm, Pavel Machek

On Thu, May 06, 2010 at 05:00:01PM -0700, Daniel Walker wrote:
> On Thu, 2010-05-06 at 16:54 -0700, Greg KH wrote:
> > On Thu, May 06, 2010 at 04:48:59PM -0700, Daniel Walker wrote:
> > > Not sure about this one.. Cause if you apply this then some SMD files
> > > don't compile anymore. There's some missing config options related to
> > > AMSS.
> > > 
> > > NOT-Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
> > 
> > Heh, I'm not going to apply this then :)
> > 
> > > CC: Greg KH <greg@kroah.com>
> > > Cc: Pavel Machek <pavel@ucw.cz>
> > > ---
> > >  drivers/staging/dream/Makefile |    3 ++-
> > 
> > With the recent progression of your arch tree, and the
> > wakelock/suspend-blocker stuff, what's the need for these files to still
> > be in the staging directory at all?  Can't it be deleted and it go
> > through your tree?
> 
> Yeah, all the smd stuff can .. The rest of it should stay for now I
> think. I'm not ready to take on those other specific drivers, like the
> camera etc..
> 
> Should I just send a patch to drop the whole SMD directory then?

Yes, I think so.  Pavel, any objections?

thanks,

greg k-h

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

end of thread, other threads:[~2010-05-07 17:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-05-06 23:48 [PATCH] drivers: staging: dream: fix smd in makefile Daniel Walker
2010-05-06 23:54 ` Greg KH
2010-05-07  0:00   ` Daniel Walker
2010-05-07 16:56     ` Greg KH

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.