* [PATCH]Correction to BQ27000 battery device name
@ 2008-04-29 8:56 Madhusudhan Chikkature Rajashekar
2008-04-29 11:41 ` Felipe Balbi
0 siblings, 1 reply; 3+ messages in thread
From: Madhusudhan Chikkature Rajashekar @ 2008-04-29 8:56 UTC (permalink / raw)
To: 'Tony Lindgren'; +Cc: linux-omap
This patch changes the device name as the bq27000 chip is not omap specific.
Signed-off-by: Madhusudhan Chikkature<madhu.cr@ti.com>
---
drivers/w1/slaves/w1_bq27000.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: linux-omap-2.6/drivers/w1/slaves/w1_bq27000.c
===================================================================
--- linux-omap-2.6.orig/drivers/w1/slaves/w1_bq27000.c 2008-04-29 11:22:42.000000000 +0530
+++ linux-omap-2.6/drivers/w1/slaves/w1_bq27000.c 2008-04-29 11:25:17.963079042 +0530
@@ -59,7 +59,7 @@
int id = 1;
struct platform_device *pdev;
- pdev = platform_device_alloc("omap-bq2700-battery", id);
+ pdev = platform_device_alloc("bq27000-battery", id);
if (!pdev) {
ret = -ENOMEM;
return ret;
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH]Correction to BQ27000 battery device name
2008-04-29 8:56 [PATCH]Correction to BQ27000 battery device name Madhusudhan Chikkature Rajashekar
@ 2008-04-29 11:41 ` Felipe Balbi
2008-05-06 22:16 ` Tony Lindgren
0 siblings, 1 reply; 3+ messages in thread
From: Felipe Balbi @ 2008-04-29 11:41 UTC (permalink / raw)
To: Madhusudhan Chikkature Rajashekar; +Cc: Tony Lindgren, linux-omap
On Tue, 29 Apr 2008 14:26:58 +0530, "Madhusudhan Chikkature Rajashekar"
<madhu.cr@ti.com> wrote:
> This patch changes the device name as the bq27000 chip is not omap
> specific.
Sure this is not omap-specific. A more generic name is better ;-)
>
> Signed-off-by: Madhusudhan Chikkature<madhu.cr@ti.com>
Acked-by: Felipe Balbi <felipe.balbi@nokia.com>
>
> ---
> drivers/w1/slaves/w1_bq27000.c | 2 +-
> 1 files changed, 1 insertion(+), 1 deletion(-)
>
> Index: linux-omap-2.6/drivers/w1/slaves/w1_bq27000.c
> ===================================================================
> --- linux-omap-2.6.orig/drivers/w1/slaves/w1_bq27000.c 2008-04-29
> 11:22:42.000000000 +0530
> +++ linux-omap-2.6/drivers/w1/slaves/w1_bq27000.c 2008-04-29
> 11:25:17.963079042 +0530
> @@ -59,7 +59,7 @@
> int id = 1;
> struct platform_device *pdev;
>
> - pdev = platform_device_alloc("omap-bq2700-battery", id);
> + pdev = platform_device_alloc("bq27000-battery", id);
> if (!pdev) {
> ret = -ENOMEM;
> return ret;
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Best Regards,
Felipe Balbi
http://felipebalbi.com
me@felipebalbi.com
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH]Correction to BQ27000 battery device name
2008-04-29 11:41 ` Felipe Balbi
@ 2008-05-06 22:16 ` Tony Lindgren
0 siblings, 0 replies; 3+ messages in thread
From: Tony Lindgren @ 2008-05-06 22:16 UTC (permalink / raw)
To: Felipe Balbi; +Cc: Madhusudhan Chikkature Rajashekar, linux-omap
* Felipe Balbi <me@felipebalbi.com> [080429 04:41]:
>
>
> On Tue, 29 Apr 2008 14:26:58 +0530, "Madhusudhan Chikkature Rajashekar"
> <madhu.cr@ti.com> wrote:
> > This patch changes the device name as the bq27000 chip is not omap
> > specific.
>
> Sure this is not omap-specific. A more generic name is better ;-)
Pushing.
Tony
>
> >
> > Signed-off-by: Madhusudhan Chikkature<madhu.cr@ti.com>
> Acked-by: Felipe Balbi <felipe.balbi@nokia.com>
> >
> > ---
> > drivers/w1/slaves/w1_bq27000.c | 2 +-
> > 1 files changed, 1 insertion(+), 1 deletion(-)
> >
> > Index: linux-omap-2.6/drivers/w1/slaves/w1_bq27000.c
> > ===================================================================
> > --- linux-omap-2.6.orig/drivers/w1/slaves/w1_bq27000.c 2008-04-29
> > 11:22:42.000000000 +0530
> > +++ linux-omap-2.6/drivers/w1/slaves/w1_bq27000.c 2008-04-29
> > 11:25:17.963079042 +0530
> > @@ -59,7 +59,7 @@
> > int id = 1;
> > struct platform_device *pdev;
> >
> > - pdev = platform_device_alloc("omap-bq2700-battery", id);
> > + pdev = platform_device_alloc("bq27000-battery", id);
> > if (!pdev) {
> > ret = -ENOMEM;
> > return ret;
> >
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at http://vger.kernel.org/majordomo-info.html
> --
> Best Regards,
>
> Felipe Balbi
> http://felipebalbi.com
> me@felipebalbi.com
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-05-06 22:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-29 8:56 [PATCH]Correction to BQ27000 battery device name Madhusudhan Chikkature Rajashekar
2008-04-29 11:41 ` Felipe Balbi
2008-05-06 22:16 ` Tony Lindgren
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox