From patchwork Thu Sep 10 10:05:54 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: richard kennedy X-Patchwork-Id: 46583 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n8AAQkkb029478 for ; Thu, 10 Sep 2009 10:26:46 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752897AbZIJK0m (ORCPT ); Thu, 10 Sep 2009 06:26:42 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753036AbZIJK0m (ORCPT ); Thu, 10 Sep 2009 06:26:42 -0400 Received: from anchor-post-3.mail.demon.net ([195.173.77.134]:59727 "EHLO anchor-post-3.mail.demon.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752235AbZIJK0l (ORCPT ); Thu, 10 Sep 2009 06:26:41 -0400 X-Greylist: delayed 1248 seconds by postgrey-1.27 at vger.kernel.org; Thu, 10 Sep 2009 06:26:41 EDT Received: from rsk.demon.co.uk ([80.176.90.227] helo=[192.168.0.3]) by anchor-post-3.mail.demon.net with esmtp (Exim 4.69) id 1MlgXM-0001KY-mk; Thu, 10 Sep 2009 10:05:56 +0000 Subject: UWB Kconfig: cannot set UWB to N in gconfig From: Richard Kennedy To: David Vrabel , Roman Zippel Cc: linux-usb , linux-kbuild , lkml Date: Thu, 10 Sep 2009 11:05:54 +0100 Message-Id: <1252577154.2340.12.camel@castor> Mime-Version: 1.0 X-Mailer: Evolution 2.26.3 (2.26.3-1.fc11) Sender: linux-kbuild-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kbuild@vger.kernel.org I sometimes use 'make gconfig' and I noticed that I cannot disable the UWB option -- it just won't let me set it to N. AFAICT this is because the CONFIG USB_WUSB selects UWB which forces it on. applying this patch fixes the issue but I'm not sure if this is the right way to go about it. any thoughts? regards Richard This is against 2.6.31 --- To unsubscribe from this list: send the line "unsubscribe linux-kbuild" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/drivers/usb/wusbcore/Kconfig b/drivers/usb/wusbcore/Kconfig index eb09a0a..cc97041 100644 --- a/drivers/usb/wusbcore/Kconfig +++ b/drivers/usb/wusbcore/Kconfig @@ -5,7 +5,7 @@ config USB_WUSB tristate "Enable Wireless USB extensions (EXPERIMENTAL)" depends on EXPERIMENTAL depends on USB - select UWB + depends on UWB select CRYPTO select CRYPTO_BLKCIPHER select CRYPTO_CBC