Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756716AbYKCQl6 (ORCPT ); Mon, 3 Nov 2008 11:41:58 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755535AbYKCQlu (ORCPT ); Mon, 3 Nov 2008 11:41:50 -0500 Received: from yx-out-2324.google.com ([74.125.44.28]:52299 "EHLO yx-out-2324.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755041AbYKCQlt (ORCPT ); Mon, 3 Nov 2008 11:41:49 -0500 DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=XKjcFEYc07HuSUkWQSoLQGaZEj+fq6zzw50MLBaOT+EytlDbfyFjT0N8c4NLVwlzp9 IxXCtdPVtTzyjnpdapWdiQzJ2b+Zxy1qst2gAOlnMqKFFZIaZ2fd5v406vV0FWZuchSn 7fDvQOcvxpmxef/K0EqsGP0MvrUZvIUGHCTsU= Message-ID: Date: Mon, 3 Nov 2008 19:41:47 +0300 From: Dmitry To: avorontsov@ru.mvista.com Subject: Re: [PATCH] power_supply: only register tosa_battery driver on tosa Cc: linux-kernel@vger.kernel.org, cbou@mail.ru, "Andrew Morton" , "Mark Brown" In-Reply-To: <20081103162547.GA25546@oksana.dev.rtsoft.ru> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1225271050-21171-1-git-send-email-dbaryshkov@gmail.com> <20081103145514.GA23466@oksana.dev.rtsoft.ru> <20081103162547.GA25546@oksana.dev.rtsoft.ru> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2499 Lines: 68 2008/11/3 Anton Vorontsov : > On Mon, Nov 03, 2008 at 07:20:06PM +0300, Dmitry wrote: >> 2008/11/3 Anton Vorontsov : >> > On Sun, Nov 02, 2008 at 11:36:08PM +0300, Dmitry wrote: >> >> 2008/10/29 Dmitry Baryshkov : >> >> > There are already several wm97xx-battery drivers. Do register the tosa one >> >> > only on tosa machines. >> >> > >> >> > Signed-off-by: Dmitry Baryshkov >> >> > --- >> >> > drivers/power/tosa_battery.c | 3 +++ >> >> > 1 files changed, 3 insertions(+), 0 deletions(-) >> >> >> >> What about this patch? >> > >> > Sorry for the delay. >> > >> >> IMO it can and should be merged during 2.6.28-rc cycle. >> >> >> >> diff --git a/drivers/power/tosa_battery.c b/drivers/power/tosa_battery.c >> >> index 2eab35a..4e52c22 100644 >> >> --- a/drivers/power/tosa_battery.c >> >> +++ b/drivers/power/tosa_battery.c >> >> @@ -469,6 +469,9 @@ static struct platform_driver tosa_bat_driver = { >> >> >> >> static int __init tosa_bat_init(void) >> >> { >> >> + if (!machine_is_tosa()) >> >> + return -EINVAL; >> >> + >> > >> > I tend to reject this approach. You should rename the driver instead. >> > >> > I.e. >> > -.driver.name = "wm97xx-battery", >> > -.driver.name = "tosa-battery", >> > >> > And make sure that this won't break users of that driver (though >> > I don't see any). >> >> The wm97xx-battery device is registered by >> drivers/input/toucscreen/wm97xx-core.c > > Hmm.. So you can't rename the tosa driver, because then it won't > work, correct? Yup. I see few ways to resolve this: * write better wm97xx interface. Dunno if that is feasible or possible. One of the possible solutions is to pass battery and ts device names and data from within board data via ac97 layer to wm97xx-core. This will provide several benefits (e.g. then we can drop lots of parameters from wm97xx-core, which are really board parameters). * Merge most of functionality of wm97xx-battery driver for Palms (by Marek), my tosa battery driver, name that The Only wm97xx-battery Driver. However on this path we will have to put lot's of code into hooks, which is pretty much ugly IMO. -- With best wishes Dmitry -- 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/