Return-path: Received: from comal.ext.ti.com ([198.47.26.152]:46413 "EHLO comal.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752920Ab0JMMDd convert rfc822-to-8bit (ORCPT ); Wed, 13 Oct 2010 08:03:33 -0400 From: "Premi, Sanjeev" To: "csanjay@mistralsolutions.com" , "linux-omap@vger.kernel.org" CC: "linux-wireless@vger.kernel.org" Date: Wed, 13 Oct 2010 17:33:25 +0530 Subject: RE: [WL1271 DC supprot on OMAP3EVM 3/5] ARM: Supported for BT enable on OMAP3EVM for WL1271 DC Message-ID: References: <1286967077-20071-1-git-send-email-csanjay@mistralsolutions.com> <1286967077-20071-4-git-send-email-csanjay@mistralsolutions.com> In-Reply-To: <1286967077-20071-4-git-send-email-csanjay@mistralsolutions.com> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Sender: linux-wireless-owner@vger.kernel.org List-ID: > -----Original Message----- > From: linux-omap-owner@vger.kernel.org > [mailto:linux-omap-owner@vger.kernel.org] On Behalf Of > csanjay@mistralsolutions.com > Sent: Wednesday, October 13, 2010 4:21 PM > To: linux-omap@vger.kernel.org > Cc: linux-wireless@vger.kernel.org; Sanjay Kumar Champati > Subject: [WL1271 DC supprot on OMAP3EVM 3/5] ARM: Supported > for BT enable on OMAP3EVM for WL1271 DC > > From: Sanjay Kumar Champati > > * Midified "tty_io.c" and "Kconfig" files to suuport BT > enable for WL1271 > > Signed-off-by: Sanjay Kumar Champati > --- > drivers/bluetooth/Kconfig | 7 +++ > drivers/char/tty_io.c | 110 > +++++++++++++++++++++++++++++++++++++++++++++ > 2 files changed, 117 insertions(+), 0 deletions(-) > > diff --git a/drivers/bluetooth/Kconfig b/drivers/bluetooth/Kconfig > index 652367a..2ed159c 100644 > --- a/drivers/bluetooth/Kconfig > +++ b/drivers/bluetooth/Kconfig > @@ -195,5 +195,12 @@ config BT_MRVL_SDIO > Say Y here to compile support for Marvell BT-over-SDIO driver > into the kernel or say M to compile it as module. > > +config BT_WL1271 > + bool "WL1271 Bluetooth driver support" > + depends on BT_HCIUART > + help > + The core driver to support WL1271 Bluetooth devices. > + Say Y here to compile WL1271 Bluetooth driver into the kernel. > + > endmenu > > diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c > index f15df40..a3ae352 100644 > --- a/drivers/char/tty_io.c > +++ b/drivers/char/tty_io.c > @@ -107,6 +107,17 @@ > #include > #include > > +#ifdef CONFIG_BT_WL1271 [sp] No. This isn't the place for it. You cannot change the generic driver for custom implementation. Same comment applies to all the changes in this file. [snip]...[snip]