openwrtv3/target/linux/generic/patches-3.3/a01-swconfig_leds-define-leds_set_brightness.patch
Gabor Juhos ee9376d153 generic: swconfig: use led_set_brightness in LED control code
The 'led_brightness_set' function has
been renamed to 'led_set_brightness'
in recent ernels. Use the new name and
add a compatibility patch for 3.3.

Signed-off-by: Gabor Juhos <juhosg@openwrt.org>

SVN-Revision: 33946
2012-10-26 18:58:18 +00:00

11 lines
346 B
Diff

--- a/drivers/net/phy/swconfig_leds.c
+++ b/drivers/net/phy/swconfig_leds.c
@@ -20,6 +20,8 @@
#define SWCONFIG_LED_TIMER_INTERVAL (HZ / 10)
#define SWCONFIG_LED_NUM_PORTS 32
+#define led_set_brightness(_led, _switch) led_brightness_set((_led), (_switch))
+
struct switch_led_trigger {
struct led_trigger trig;
struct switch_dev *swdev;