Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754022Ab0FWWpN (ORCPT ); Wed, 23 Jun 2010 18:45:13 -0400 Received: from kroah.org ([198.145.64.141]:36474 "EHLO coco.kroah.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751708Ab0FWWpL (ORCPT ); Wed, 23 Jun 2010 18:45:11 -0400 Date: Wed, 23 Jun 2010 15:41:50 -0700 From: Greg KH To: Ohad Ben-Cohen Cc: linux-kernel@vger.kernel.org, linux-omap@vger.kernel.org, Hebbar Shivananda , Ramos Falcon Ernesto , Anna Suman , Kanigeri Hari , Felipe Contreras , Felipe Balbi , Hiroshi DOYU , Gupta Ramesh , Guzman Lugo Fernando , Tony Lindgren , Ameya Palande , Gomez Castellanos Ivan , Andy Shevchenko , Armando Uribe De Leon , Deepak Chitriki , Menon Nishanth , Phil Carmody , Pitney Gilbert , Bhavin Shah , Omar Ramirez Luna Subject: Re: [PATCH 11/11] staging: ti dspbridge: enable driver building Message-ID: <20100623224150.GA6680@kroah.com> References: <1277298125-17991-1-git-send-email-ohad@wizery.com> <1277298840-18516-1-git-send-email-ohad@wizery.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1277298840-18516-1-git-send-email-ohad@wizery.com> User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3294 Lines: 86 On Wed, Jun 23, 2010 at 04:14:00PM +0300, Ohad Ben-Cohen wrote: > From: Omar Ramirez Luna > > Add Kconfig + Makefile for TI's DSP Bridge driver > and expose it to the staging menu. > > Signed-off-by: Omar Ramirez Luna > Signed-off-by: Kanigeri, Hari > Signed-off-by: Ameya Palande > Signed-off-by: Guzman Lugo, Fernando > Signed-off-by: Hebbar, Shivananda > Signed-off-by: Ramos Falcon, Ernesto > Signed-off-by: Felipe Contreras > Signed-off-by: Anna, Suman > Signed-off-by: Gupta, Ramesh > Signed-off-by: Gomez Castellanos, Ivan > Signed-off-by: Andy Shevchenko > Signed-off-by: Armando Uribe De Leon > Signed-off-by: Deepak Chitriki > Signed-off-by: Menon, Nishanth > Signed-off-by: Phil Carmody > Signed-off-by: Ohad Ben-Cohen > --- > drivers/staging/Kconfig | 2 + > drivers/staging/Makefile | 1 + > drivers/staging/tidspbridge/Kconfig | 88 ++++++++++++++++++++++++++++++++++ > drivers/staging/tidspbridge/Makefile | 34 +++++++++++++ > 4 files changed, 125 insertions(+), 0 deletions(-) > create mode 100644 drivers/staging/tidspbridge/Kconfig > create mode 100644 drivers/staging/tidspbridge/Makefile > > > diff --git a/drivers/staging/Kconfig b/drivers/staging/Kconfig > index 3de4bca..c9e8215 100644 > --- a/drivers/staging/Kconfig > +++ b/drivers/staging/Kconfig > @@ -153,5 +153,9 @@ source "drivers/staging/easycap/Kconfig" > > source "drivers/staging/solo6x10/Kconfig" > > +source "drivers/staging/tidspbridge/Kconfig" > + > +source "drivers/staging/tidspbridge/Kconfig" > + > endif # !STAGING_EXCLUDE_BUILD > endif # STAGING > diff --git a/drivers/staging/Makefile b/drivers/staging/Makefile > index b28d820..952b64e 100644 > --- a/drivers/staging/Makefile > +++ b/drivers/staging/Makefile > @@ -57,3 +57,4 @@ obj-$(CONFIG_TOUCHSCREEN_MRSTOUCH) += mrst-touchscreen/ > obj-$(CONFIG_MSM_STAGING) += msm/ > obj-$(CONFIG_EASYCAP) += easycap/ > obj-$(CONFIG_SOLO6X10) += solo6x10/ > +obj-$(CONFIG_TIDSPBRIDGE) += tidspbridge/ > diff --git a/drivers/staging/tidspbridge/Kconfig b/drivers/staging/tidspbridge/Kconfig > new file mode 100644 > index 0000000..37fa2b1 > --- /dev/null > +++ b/drivers/staging/tidspbridge/Kconfig > @@ -0,0 +1,88 @@ > +# > +# DSP Bridge Driver Support > +# > + > +menuconfig TIDSPBRIDGE > + tristate "DSP Bridge driver" > + default n The default is always 'n' so you don't need this. Also, this enables the driver to be built on x86, which fails horribly, and I don't think is what you really want to have happen :) So I need some more Kconfig changes here, care to redo just this one patch? I've applied all the others and they will show up in linux-next tomorrow. thanks, greg k-h -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/