From mboxrd@z Thu Jan 1 00:00:00 1970 From: Linus Torvalds Subject: Re: [2.6 patch] HID: fix default building of all quirky devices Date: Wed, 15 Oct 2008 10:17:27 -0700 (PDT) Message-ID: References: <20081015041346.GE4710@cs181140183.pp.htv.fi> <20081015050557.GB20183@cs181140183.pp.htv.fi> <20081015073011.GE20183@cs181140183.pp.htv.fi> Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Return-path: Received: from smtp1.linux-foundation.org ([140.211.169.13]:48187 "EHLO smtp1.linux-foundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751839AbYJORTh (ORCPT ); Wed, 15 Oct 2008 13:19:37 -0400 In-Reply-To: Sender: linux-input-owner@vger.kernel.org List-Id: linux-input@vger.kernel.org To: Jiri Kosina Cc: Adrian Bunk , zippel@linux-m68k.org, sam@ravnborg.org, linux-input@vger.kernel.org, linux-kernel@vger.kernel.org, Jiri Slaby , Mauro Carvalho Chehab On Wed, 15 Oct 2008, Linus Torvalds wrote: > > And notice how you mis-use select. That's not how to disable a question. A > question gets disabled by just doing an "if xyz" on the question itself, > like Adrian did. Side note: Adrian too has a very odd and non-obvious way of doing this. His patch did config entries like config HID_BRIGHT tristate "Bright" if EMBEDDED default USB_HID depends on USB_HID which is a really odd way to express this. The much more natural one is config HID_BRIGHT tristate "Bright" if EMBEDDED depends on USB_HID default y since there's no point in saying "default USB_HID" + "depends on USB_HID", and that's just confusing. Since it depends on USB_HID, the "default y" will automatically degrade to whatever USB_HID was set to. Linus