* [PATCH] rt2x00: Fix radio LED type check
@ 2009-01-02 8:05 Andrew Price
2009-01-02 11:14 ` Ivo Van Doorn
0 siblings, 1 reply; 7+ messages in thread
From: Andrew Price @ 2009-01-02 8:05 UTC (permalink / raw)
To: John W. Linville; +Cc: linux-wireless
Since commit 9a95dba32735534bda59def40c747bf606fedf05 "rt2x00: Fix LED
state handling", rt2x00leds_led_radio wrongly checks that the LED type
is LED_TYPE_ASSOC. This patch makes it check for LED_TYPE_RADIO once
again.
Signed-off-by: Andrew Price <andy@andrewprice.me.uk>
---
drivers/net/wireless/rt2x00/rt2x00leds.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/net/wireless/rt2x00/rt2x00leds.c b/drivers/net/wireless/rt2x00/rt2x00leds.c
index 68f4e0f..a0cd35b 100644
--- a/drivers/net/wireless/rt2x00/rt2x00leds.c
+++ b/drivers/net/wireless/rt2x00/rt2x00leds.c
@@ -97,7 +97,7 @@ void rt2x00leds_led_assoc(struct rt2x00_dev *rt2x00dev, bool enabled)
void rt2x00leds_led_radio(struct rt2x00_dev *rt2x00dev, bool enabled)
{
- if (rt2x00dev->led_radio.type == LED_TYPE_ASSOC)
+ if (rt2x00dev->led_radio.type == LED_TYPE_RADIO)
rt2x00led_led_simple(&rt2x00dev->led_radio, enabled);
}
--
1.5.6.5
^ permalink raw reply related [flat|nested] 7+ messages in thread
* Re: [PATCH] rt2x00: Fix radio LED type check
2009-01-02 8:05 [PATCH] rt2x00: Fix radio LED type check Andrew Price
@ 2009-01-02 11:14 ` Ivo Van Doorn
2009-01-02 14:10 ` Marcel Holtmann
2009-01-08 18:10 ` Andrew Price
0 siblings, 2 replies; 7+ messages in thread
From: Ivo Van Doorn @ 2009-01-02 11:14 UTC (permalink / raw)
To: Andrew Price; +Cc: John W. Linville, linux-wireless
On Fri, Jan 2, 2009 at 9:05 AM, Andrew Price <andy@andrewprice.me.uk> wrote:
> Since commit 9a95dba32735534bda59def40c747bf606fedf05 "rt2x00: Fix LED
> state handling", rt2x00leds_led_radio wrongly checks that the LED type
> is LED_TYPE_ASSOC. This patch makes it check for LED_TYPE_RADIO once
> again.
>
> Signed-off-by: Andrew Price <andy@andrewprice.me.uk>
Good catch. Thanks.
Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
> ---
> drivers/net/wireless/rt2x00/rt2x00leds.c | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/drivers/net/wireless/rt2x00/rt2x00leds.c b/drivers/net/wireless/rt2x00/rt2x00leds.c
> index 68f4e0f..a0cd35b 100644
> --- a/drivers/net/wireless/rt2x00/rt2x00leds.c
> +++ b/drivers/net/wireless/rt2x00/rt2x00leds.c
> @@ -97,7 +97,7 @@ void rt2x00leds_led_assoc(struct rt2x00_dev *rt2x00dev, bool enabled)
>
> void rt2x00leds_led_radio(struct rt2x00_dev *rt2x00dev, bool enabled)
> {
> - if (rt2x00dev->led_radio.type == LED_TYPE_ASSOC)
> + if (rt2x00dev->led_radio.type == LED_TYPE_RADIO)
> rt2x00led_led_simple(&rt2x00dev->led_radio, enabled);
> }
>
> --
> 1.5.6.5
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-wireless" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
>
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] rt2x00: Fix radio LED type check
2009-01-02 11:14 ` Ivo Van Doorn
@ 2009-01-02 14:10 ` Marcel Holtmann
2009-01-02 14:21 ` Ivo van Doorn
2009-01-08 18:10 ` Andrew Price
1 sibling, 1 reply; 7+ messages in thread
From: Marcel Holtmann @ 2009-01-02 14:10 UTC (permalink / raw)
To: Ivo Van Doorn; +Cc: Andrew Price, John W. Linville, linux-wireless
Hi Ivo,
> > Since commit 9a95dba32735534bda59def40c747bf606fedf05 "rt2x00: Fix LED
> > state handling", rt2x00leds_led_radio wrongly checks that the LED type
> > is LED_TYPE_ASSOC. This patch makes it check for LED_TYPE_RADIO once
> > again.
> >
> > Signed-off-by: Andrew Price <andy@andrewprice.me.uk>
>
> Good catch. Thanks.
>
> Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
small comment from my side here. Signed-off-by is only suppose to be
used if you pick up the patch and then send it to John by yourself. If
you just wanna indicate that it is fine for John to pick up this patch,
then it should be an Acked-by: line.
The Signed-off-by should indicate the steps (aka persons) this patch
when through until it reached Linus. This doesn't include people testing
or acknowledging a patch.
Regards
Marcel
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] rt2x00: Fix radio LED type check
2009-01-02 14:10 ` Marcel Holtmann
@ 2009-01-02 14:21 ` Ivo van Doorn
0 siblings, 0 replies; 7+ messages in thread
From: Ivo van Doorn @ 2009-01-02 14:21 UTC (permalink / raw)
To: Marcel Holtmann; +Cc: Andrew Price, John W. Linville, linux-wireless
On Friday 02 January 2009, Marcel Holtmann wrote:
> Hi Ivo,
>
> > > Since commit 9a95dba32735534bda59def40c747bf606fedf05 "rt2x00: Fix LED
> > > state handling", rt2x00leds_led_radio wrongly checks that the LED type
> > > is LED_TYPE_ASSOC. This patch makes it check for LED_TYPE_RADIO once
> > > again.
> > >
> > > Signed-off-by: Andrew Price <andy@andrewprice.me.uk>
> >
> > Good catch. Thanks.
> >
> > Signed-off-by: Ivo van Doorn <IvDoorn@gmail.com>
>
> small comment from my side here. Signed-off-by is only suppose to be
> used if you pick up the patch and then send it to John by yourself. If
> you just wanna indicate that it is fine for John to pick up this patch,
> then it should be an Acked-by: line.
>
> The Signed-off-by should indicate the steps (aka persons) this patch
> when through until it reached Linus. This doesn't include people testing
> or acknowledging a patch.
Ok, feel free to change it to a Acked-by then. ;)
Ivo
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] rt2x00: Fix radio LED type check
2009-01-02 11:14 ` Ivo Van Doorn
2009-01-02 14:10 ` Marcel Holtmann
@ 2009-01-08 18:10 ` Andrew Price
2009-01-08 18:49 ` Ivo van Doorn
2009-01-08 18:50 ` John W. Linville
1 sibling, 2 replies; 7+ messages in thread
From: Andrew Price @ 2009-01-08 18:10 UTC (permalink / raw)
To: Ivo Van Doorn; +Cc: John W. Linville, linux-wireless
On Fri, Jan 02, 2009 at 12:14:17PM +0100, Ivo Van Doorn wrote:
> On Fri, Jan 2, 2009 at 9:05 AM, Andrew Price <andy@andrewprice.me.uk> wrote:
> > Since commit 9a95dba32735534bda59def40c747bf606fedf05 "rt2x00: Fix LED
> > state handling", rt2x00leds_led_radio wrongly checks that the LED type
> > is LED_TYPE_ASSOC. This patch makes it check for LED_TYPE_RADIO once
> > again.
> >
> > Signed-off-by: Andrew Price <andy@andrewprice.me.uk>
>
> Good catch. Thanks.
>
> Acked-by: Ivo van Doorn <IvDoorn@gmail.com>
Thanks for that. I'm a little new to this so I'm not sure what happens now.
Will the patch go into John's tree and make it's way to Linus' tree (where the
bug is) or should I send it directly to Linus/LKML with Ivo's Acked-by line?
Regards,
--
Andrew Price
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] rt2x00: Fix radio LED type check
2009-01-08 18:10 ` Andrew Price
@ 2009-01-08 18:49 ` Ivo van Doorn
2009-01-08 18:50 ` John W. Linville
1 sibling, 0 replies; 7+ messages in thread
From: Ivo van Doorn @ 2009-01-08 18:49 UTC (permalink / raw)
To: Andrew Price; +Cc: John W. Linville, linux-wireless
On Thursday 08 January 2009, Andrew Price wrote:
> On Fri, Jan 02, 2009 at 12:14:17PM +0100, Ivo Van Doorn wrote:
> > On Fri, Jan 2, 2009 at 9:05 AM, Andrew Price <andy@andrewprice.me.uk> wrote:
> > > Since commit 9a95dba32735534bda59def40c747bf606fedf05 "rt2x00: Fix LED
> > > state handling", rt2x00leds_led_radio wrongly checks that the LED type
> > > is LED_TYPE_ASSOC. This patch makes it check for LED_TYPE_RADIO once
> > > again.
> > >
> > > Signed-off-by: Andrew Price <andy@andrewprice.me.uk>
> >
> > Good catch. Thanks.
> >
> > Acked-by: Ivo van Doorn <IvDoorn@gmail.com>
>
> Thanks for that. I'm a little new to this so I'm not sure what happens now.
> Will the patch go into John's tree and make it's way to Linus' tree (where the
> bug is) or should I send it directly to Linus/LKML with Ivo's Acked-by line?
I had added John to the CC list in my initial reply to notify him of the patch,
he will pick up the patch and make sure it will make its way to Linus. :)
Ivo
^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [PATCH] rt2x00: Fix radio LED type check
2009-01-08 18:10 ` Andrew Price
2009-01-08 18:49 ` Ivo van Doorn
@ 2009-01-08 18:50 ` John W. Linville
1 sibling, 0 replies; 7+ messages in thread
From: John W. Linville @ 2009-01-08 18:50 UTC (permalink / raw)
To: Andrew Price; +Cc: Ivo Van Doorn, linux-wireless
On Thu, Jan 08, 2009 at 06:10:35PM +0000, Andrew Price wrote:
> On Fri, Jan 02, 2009 at 12:14:17PM +0100, Ivo Van Doorn wrote:
> > On Fri, Jan 2, 2009 at 9:05 AM, Andrew Price <andy@andrewprice.me.uk> wrote:
> > > Since commit 9a95dba32735534bda59def40c747bf606fedf05 "rt2x00: Fix LED
> > > state handling", rt2x00leds_led_radio wrongly checks that the LED type
> > > is LED_TYPE_ASSOC. This patch makes it check for LED_TYPE_RADIO once
> > > again.
> > >
> > > Signed-off-by: Andrew Price <andy@andrewprice.me.uk>
> >
> > Good catch. Thanks.
> >
> > Acked-by: Ivo van Doorn <IvDoorn@gmail.com>
>
> Thanks for that. I'm a little new to this so I'm not sure what happens now.
> Will the patch go into John's tree and make it's way to Linus' tree (where the
> bug is) or should I send it directly to Linus/LKML with Ivo's Acked-by line?
I've got it, thanks.
John
--
John W. Linville Linux should be at the core
linville@tuxdriver.com of your literate lifestyle.
^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2009-01-08 19:00 UTC | newest]
Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-02 8:05 [PATCH] rt2x00: Fix radio LED type check Andrew Price
2009-01-02 11:14 ` Ivo Van Doorn
2009-01-02 14:10 ` Marcel Holtmann
2009-01-02 14:21 ` Ivo van Doorn
2009-01-08 18:10 ` Andrew Price
2009-01-08 18:49 ` Ivo van Doorn
2009-01-08 18:50 ` John W. Linville
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).