diff options
author | Andrew Price <andy@andrewprice.me.uk> | 2009-01-10 14:38:05 -0500 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2009-01-29 16:00:21 -0500 |
commit | 217875a37d4db3354c4c297d07b359abbf52e5e1 (patch) | |
tree | 7a6adf9ca1ef17e79e3fc62e607c5ecbcab996a4 /drivers/net/wireless/rt2x00/rt2500usb.c | |
parent | ebe6c7ba9b63539d3b1daba1a8ef4cc9ed0f6941 (diff) |
rt2400,rt2500: init led_qual for LED_MODE_DEFAULT
Add a check for LED_MODE_DEFAULT so that we use the link LED for rt2400
and rt2500 devices.
Signed-off-by: Andrew Price <andy@andrewprice.me.uk>
Acked-by: Ivo van Doorn <IvDoorn@gmail.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'drivers/net/wireless/rt2x00/rt2500usb.c')
-rw-r--r-- | drivers/net/wireless/rt2x00/rt2500usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/wireless/rt2x00/rt2500usb.c b/drivers/net/wireless/rt2x00/rt2500usb.c index 27a6971df579..67dd84ce58b0 100644 --- a/drivers/net/wireless/rt2x00/rt2500usb.c +++ b/drivers/net/wireless/rt2x00/rt2500usb.c | |||
@@ -1603,7 +1603,7 @@ static int rt2500usb_init_eeprom(struct rt2x00_dev *rt2x00dev) | |||
1603 | value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_LED_MODE); | 1603 | value = rt2x00_get_field16(eeprom, EEPROM_ANTENNA_LED_MODE); |
1604 | 1604 | ||
1605 | rt2500usb_init_led(rt2x00dev, &rt2x00dev->led_radio, LED_TYPE_RADIO); | 1605 | rt2500usb_init_led(rt2x00dev, &rt2x00dev->led_radio, LED_TYPE_RADIO); |
1606 | if (value == LED_MODE_TXRX_ACTIVITY) | 1606 | if (value == LED_MODE_TXRX_ACTIVITY || value == LED_MODE_DEFAULT) |
1607 | rt2500usb_init_led(rt2x00dev, &rt2x00dev->led_qual, | 1607 | rt2500usb_init_led(rt2x00dev, &rt2x00dev->led_qual, |
1608 | LED_TYPE_ACTIVITY); | 1608 | LED_TYPE_ACTIVITY); |
1609 | #endif /* CONFIG_RT2X00_LIB_LEDS */ | 1609 | #endif /* CONFIG_RT2X00_LIB_LEDS */ |