* Fix-a-typo-in-battery.c
@ 2009-12-13 22:48 Justin P. Mattock
2009-12-13 22:48 ` [PATCH] Fix a typo in drivers/acpi/battery.c Justin P. Mattock
0 siblings, 1 reply; 6+ messages in thread
From: Justin P. Mattock @ 2009-12-13 22:48 UTC (permalink / raw)
To: linux-kernel
Fix a typo in a comment in
drivers/acpi/battery.c
drivers/acpi/battery.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH] Fix a typo in drivers/acpi/battery.c
2009-12-13 22:48 Fix-a-typo-in-battery.c Justin P. Mattock
@ 2009-12-13 22:48 ` Justin P. Mattock
2009-12-13 23:15 ` Randy Dunlap
0 siblings, 1 reply; 6+ messages in thread
From: Justin P. Mattock @ 2009-12-13 22:48 UTC (permalink / raw)
To: linux-kernel; +Cc: Justin P. Mattock
Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
---
drivers/acpi/battery.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/acpi/battery.c b/drivers/acpi/battery.c
index 3f4602b..cada73f 100644
--- a/drivers/acpi/battery.c
+++ b/drivers/acpi/battery.c
@@ -831,7 +831,7 @@ static void acpi_battery_notify(struct acpi_device *device, u32 event)
dev_name(&device->dev), event,
acpi_battery_present(battery));
#ifdef CONFIG_ACPI_SYSFS_POWER
- /* acpi_batter_update could remove power_supply object */
+ /* acpi_battery_update could remove power_supply object */
if (battery->bat.dev)
kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
#endif
--
1.6.5.5
^ permalink raw reply related [flat|nested] 6+ messages in thread
* Re: [PATCH] Fix a typo in drivers/acpi/battery.c
2009-12-13 22:48 ` [PATCH] Fix a typo in drivers/acpi/battery.c Justin P. Mattock
@ 2009-12-13 23:15 ` Randy Dunlap
2009-12-14 0:23 ` Justin P. Mattock
0 siblings, 1 reply; 6+ messages in thread
From: Randy Dunlap @ 2009-12-13 23:15 UTC (permalink / raw)
To: Justin P. Mattock; +Cc: linux-kernel
On Sun, 13 Dec 2009 14:48:56 -0800 Justin P. Mattock wrote:
> Signed-off-by: Justin P. Mattock <justinmattock@gmail.com>
> ---
> drivers/acpi/battery.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/acpi/battery.c b/drivers/acpi/battery.c
> index 3f4602b..cada73f 100644
> --- a/drivers/acpi/battery.c
> +++ b/drivers/acpi/battery.c
> @@ -831,7 +831,7 @@ static void acpi_battery_notify(struct acpi_device *device, u32 event)
> dev_name(&device->dev), event,
> acpi_battery_present(battery));
> #ifdef CONFIG_ACPI_SYSFS_POWER
> - /* acpi_batter_update could remove power_supply object */
> + /* acpi_battery_update could remove power_supply object */
> if (battery->bat.dev)
> kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
> #endif
> --
Hi,
You don't need an intro patch email and then the patch email
for such a simple patch.
Also, please note (from "MAINTAINERS" or from scripts/get_maintainer.pl)
that acpi patches go to linux-acpi@vger.kernel.org .
---
~Randy
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Fix a typo in drivers/acpi/battery.c
2009-12-13 23:15 ` Randy Dunlap
@ 2009-12-14 0:23 ` Justin P. Mattock
2009-12-14 1:21 ` Randy Dunlap
0 siblings, 1 reply; 6+ messages in thread
From: Justin P. Mattock @ 2009-12-14 0:23 UTC (permalink / raw)
To: Randy Dunlap; +Cc: linux-kernel
On 12/13/09 15:15, Randy Dunlap wrote:
> On Sun, 13 Dec 2009 14:48:56 -0800 Justin P. Mattock wrote:
>
>> Signed-off-by: Justin P. Mattock<justinmattock@gmail.com>
>> ---
>> drivers/acpi/battery.c | 2 +-
>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>
>> diff --git a/drivers/acpi/battery.c b/drivers/acpi/battery.c
>> index 3f4602b..cada73f 100644
>> --- a/drivers/acpi/battery.c
>> +++ b/drivers/acpi/battery.c
>> @@ -831,7 +831,7 @@ static void acpi_battery_notify(struct acpi_device *device, u32 event)
>> dev_name(&device->dev), event,
>> acpi_battery_present(battery));
>> #ifdef CONFIG_ACPI_SYSFS_POWER
>> - /* acpi_batter_update could remove power_supply object */
>> + /* acpi_battery_update could remove power_supply object */
>> if (battery->bat.dev)
>> kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
>> #endif
>> --
>
> Hi,
>
> You don't need an intro patch email and then the patch email
> for such a simple patch.
>
> Also, please note (from "MAINTAINERS" or from scripts/get_maintainer.pl)
> that acpi patches go to linux-acpi@vger.kernel.org .
>
> ---
> ~Randy
>
So should I resend this to acpi then, or just
take note of this the next time?
Justin P. Mattock
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Fix a typo in drivers/acpi/battery.c
2009-12-14 0:23 ` Justin P. Mattock
@ 2009-12-14 1:21 ` Randy Dunlap
2009-12-14 2:35 ` Justin P. Mattock
0 siblings, 1 reply; 6+ messages in thread
From: Randy Dunlap @ 2009-12-14 1:21 UTC (permalink / raw)
To: Justin P. Mattock; +Cc: linux-kernel
On Sun, 13 Dec 2009 16:23:18 -0800 Justin P. Mattock wrote:
> On 12/13/09 15:15, Randy Dunlap wrote:
> > On Sun, 13 Dec 2009 14:48:56 -0800 Justin P. Mattock wrote:
> >
> >> Signed-off-by: Justin P. Mattock<justinmattock@gmail.com>
> >> ---
> >> drivers/acpi/battery.c | 2 +-
> >> 1 files changed, 1 insertions(+), 1 deletions(-)
> >>
> >> diff --git a/drivers/acpi/battery.c b/drivers/acpi/battery.c
> >> index 3f4602b..cada73f 100644
> >> --- a/drivers/acpi/battery.c
> >> +++ b/drivers/acpi/battery.c
> >> @@ -831,7 +831,7 @@ static void acpi_battery_notify(struct acpi_device *device, u32 event)
> >> dev_name(&device->dev), event,
> >> acpi_battery_present(battery));
> >> #ifdef CONFIG_ACPI_SYSFS_POWER
> >> - /* acpi_batter_update could remove power_supply object */
> >> + /* acpi_battery_update could remove power_supply object */
> >> if (battery->bat.dev)
> >> kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
> >> #endif
> >> --
> >
> > Hi,
> >
> > You don't need an intro patch email and then the patch email
> > for such a simple patch.
> >
> > Also, please note (from "MAINTAINERS" or from scripts/get_maintainer.pl)
> > that acpi patches go to linux-acpi@vger.kernel.org .
> >
> > ---
> > ~Randy
> >
>
> So should I resend this to acpi then, or just
> take note of this the next time?
I'd say resend to linux-acpi and cc: the acpi maintainer.
---
~Randy
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] Fix a typo in drivers/acpi/battery.c
2009-12-14 1:21 ` Randy Dunlap
@ 2009-12-14 2:35 ` Justin P. Mattock
0 siblings, 0 replies; 6+ messages in thread
From: Justin P. Mattock @ 2009-12-14 2:35 UTC (permalink / raw)
To: Randy Dunlap; +Cc: linux-kernel
On 12/13/09 17:21, Randy Dunlap wrote:
> On Sun, 13 Dec 2009 16:23:18 -0800 Justin P. Mattock wrote:
>
>> On 12/13/09 15:15, Randy Dunlap wrote:
>>> On Sun, 13 Dec 2009 14:48:56 -0800 Justin P. Mattock wrote:
>>>
>>>> Signed-off-by: Justin P. Mattock<justinmattock@gmail.com>
>>>> ---
>>>> drivers/acpi/battery.c | 2 +-
>>>> 1 files changed, 1 insertions(+), 1 deletions(-)
>>>>
>>>> diff --git a/drivers/acpi/battery.c b/drivers/acpi/battery.c
>>>> index 3f4602b..cada73f 100644
>>>> --- a/drivers/acpi/battery.c
>>>> +++ b/drivers/acpi/battery.c
>>>> @@ -831,7 +831,7 @@ static void acpi_battery_notify(struct acpi_device *device, u32 event)
>>>> dev_name(&device->dev), event,
>>>> acpi_battery_present(battery));
>>>> #ifdef CONFIG_ACPI_SYSFS_POWER
>>>> - /* acpi_batter_update could remove power_supply object */
>>>> + /* acpi_battery_update could remove power_supply object */
>>>> if (battery->bat.dev)
>>>> kobject_uevent(&battery->bat.dev->kobj, KOBJ_CHANGE);
>>>> #endif
>>>> --
>>>
>>> Hi,
>>>
>>> You don't need an intro patch email and then the patch email
>>> for such a simple patch.
>>>
>>> Also, please note (from "MAINTAINERS" or from scripts/get_maintainer.pl)
>>> that acpi patches go to linux-acpi@vger.kernel.org .
>>>
>>> ---
>>> ~Randy
>>>
>>
>> So should I resend this to acpi then, or just
>> take note of this the next time?
>
> I'd say resend to linux-acpi and cc: the acpi maintainer.
>
> ---
> ~Randy
>
there you have it.
cc'd len brown
(not sure who the acpi maintainers are)
Justin P. Mattock
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2009-12-14 2:35 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-13 22:48 Fix-a-typo-in-battery.c Justin P. Mattock
2009-12-13 22:48 ` [PATCH] Fix a typo in drivers/acpi/battery.c Justin P. Mattock
2009-12-13 23:15 ` Randy Dunlap
2009-12-14 0:23 ` Justin P. Mattock
2009-12-14 1:21 ` Randy Dunlap
2009-12-14 2:35 ` Justin P. Mattock
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox