public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: David Vrabel <david.vrabel@csr.com>
To: Byron Bradley <byron.bbradley@gmail.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
	linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	Greg KH <greg@kroah.com>
Subject: [patch] UWB: make UWB selectable on all archs with USB support
Date: Wed, 11 Jun 2008 12:04:41 +0100	[thread overview]
Message-ID: <484FB149.4080000@csr.com> (raw)
In-Reply-To: <alpine.DEB.1.00.0806092250200.31236@gamma>

[-- Attachment #1: Type: text/plain, Size: 599 bytes --]

Byron Bradley wrote:
> I'm getting the error below when compiling for ARM (Marvell Orion 5x) but 
> having trouble working out exacty why. It looks like it isn't selecting 
> any of the CONFIG_UWB* options which USB_WHCI_HCD should select. Config is 
> attached.

ARM (and some other architectures) don't use drivers/Kconfig.  This
patch enables UWB on all these architectures that have USB support.

David
-- 
David Vrabel, Senior Software Engineer, Drivers
CSR, Churchill House, Cambridge Business Park,  Tel: +44 (0)1223 692562
Cowley Road, Cambridge, CB4 0WZ                 http://www.csr.com/

[-- Attachment #2: uwb-arch-source-drivers-uwb-Kconfig.patch --]
[-- Type: text/x-diff, Size: 1906 bytes --]

UWB: make UWB selectable on all archs with USB support

Signed-off-by: David Vrabel <david.vrabel@csr.com>

---
 arch/arm/Kconfig   |    2 ++
 arch/cris/Kconfig  |    2 ++
 arch/h8300/Kconfig |    2 ++
 arch/v850/Kconfig  |    2 ++
 4 files changed, 8 insertions(+)

Index: linux-2.6-working/arch/arm/Kconfig
===================================================================
--- linux-2.6-working.orig/arch/arm/Kconfig	2008-06-11 11:55:37.000000000 +0100
+++ linux-2.6-working/arch/arm/Kconfig	2008-06-11 11:56:29.000000000 +0100
@@ -1169,6 +1169,8 @@
 
 source "drivers/usb/Kconfig"
 
+source "drivers/uwb/Kconfig"
+
 source "drivers/mmc/Kconfig"
 
 source "drivers/leds/Kconfig"
Index: linux-2.6-working/arch/cris/Kconfig
===================================================================
--- linux-2.6-working.orig/arch/cris/Kconfig	2008-06-11 11:55:37.000000000 +0100
+++ linux-2.6-working/arch/cris/Kconfig	2008-06-11 11:56:11.000000000 +0100
@@ -677,6 +677,8 @@
 
 source "drivers/usb/Kconfig"
 
+source "drivers/uwb/Kconfig"
+
 source "arch/cris/Kconfig.debug"
 
 source "security/Kconfig"
Index: linux-2.6-working/arch/h8300/Kconfig
===================================================================
--- linux-2.6-working.orig/arch/h8300/Kconfig	2008-06-11 11:55:37.000000000 +0100
+++ linux-2.6-working/arch/h8300/Kconfig	2008-06-11 11:56:11.000000000 +0100
@@ -227,6 +227,8 @@
 
 source "drivers/usb/Kconfig"
 
+source "drivers/uwb/Kconfig"
+
 endmenu
 
 source "fs/Kconfig"
Index: linux-2.6-working/arch/v850/Kconfig
===================================================================
--- linux-2.6-working.orig/arch/v850/Kconfig	2008-06-11 11:55:38.000000000 +0100
+++ linux-2.6-working/arch/v850/Kconfig	2008-06-11 11:56:11.000000000 +0100
@@ -342,6 +342,8 @@
 
 source "drivers/usb/Kconfig"
 
+source "drivers/uwb/Kconfig"
+
 source "arch/v850/Kconfig.debug"
 
 source "security/Kconfig"

  reply	other threads:[~2008-06-11 11:51 UTC|newest]

Thread overview: 25+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-06-09 12:39 2.6.26-rc5-mm1 Andrew Morton
     [not found] ` <484D6671.302@linux.vnet.ibm.com>
2008-06-09 17:22   ` 2.6.26-rc5-mm1 Balbir Singh
2008-06-09 17:27 ` 2.6.26-rc5-mm1 Balbir Singh
2008-06-09 19:14   ` 2.6.26-rc5-mm1 Mariusz Kozlowski
2008-06-09 21:48     ` 2.6.26-rc5-mm1 Andrew Morton
2008-06-10  4:57       ` 2.6.26-rc5-mm1 Mariusz Kozlowski
2008-06-10  5:01         ` 2.6.26-rc5-mm1 Andrew Morton
2008-06-10  8:39           ` 2.6.26-rc5-mm1 Peter 1 Oberparleiter
2008-06-17 22:26             ` 2.6.26-rc5-mm1 Mariusz Kozlowski
2008-06-18  8:35               ` 2.6.26-rc5-mm1 Peter Oberparleiter
2008-06-09 17:31 ` [BUG] 2.6.26-rc5-mm1- kernel BUG at arch/x86/kernel/io_apic_64.c:355! Kamalesh Babulal
2008-06-09 21:55   ` Andrew Morton
2008-06-10 12:23     ` Kamalesh Babulal
2008-06-15 17:16       ` Kamalesh Babulal
2008-06-09 19:20 ` [PATCH] Re: 2.6.26-rc5-mm1 - fix parenthesis in drivers/net/smc911x.h Mariusz Kozlowski
2008-06-09 20:45 ` 2.6.26-rc5-mm1: kernel BUG at mm/filemap.c:575! Alexey Dobriyan
2008-06-09 21:40   ` Alexey Dobriyan
2008-06-09 22:37   ` Andrew Morton
2008-06-10  2:21     ` Nick Piggin
2008-06-09 22:11 ` 2.6.26-rc5-mm1 Byron Bradley
2008-06-11 11:04   ` David Vrabel [this message]
2008-06-11 22:26     ` [patch] UWB: make UWB selectable on all archs with USB support Byron Bradley
2008-06-09 22:33 ` sock lockup -> process in D state [Was: 2.6.26-rc5-mm1] Jiri Slaby
2008-06-09 23:01   ` Andrew Morton
2008-06-10  6:19     ` Jiri Slaby

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=484FB149.4080000@csr.com \
    --to=david.vrabel@csr.com \
    --cc=akpm@linux-foundation.org \
    --cc=byron.bbradley@gmail.com \
    --cc=greg@kroah.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox