diff options
Diffstat (limited to 'drivers/leds/ledtrig-gpio.c')
-rw-r--r-- | drivers/leds/ledtrig-gpio.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/drivers/leds/ledtrig-gpio.c b/drivers/leds/ledtrig-gpio.c index 1bc5db4ece0d..f5913372d691 100644 --- a/drivers/leds/ledtrig-gpio.c +++ b/drivers/leds/ledtrig-gpio.c | |||
@@ -44,22 +44,22 @@ static void gpio_trig_work(struct work_struct *work) | |||
44 | struct gpio_trig_data, work); | 44 | struct gpio_trig_data, work); |
45 | int tmp; | 45 | int tmp; |
46 | 46 | ||
47 | if (!gpio_data->gpio) | 47 | if (!gpio_data->gpio) |
48 | return; | 48 | return; |
49 | 49 | ||
50 | tmp = gpio_get_value(gpio_data->gpio); | 50 | tmp = gpio_get_value(gpio_data->gpio); |
51 | if (gpio_data->inverted) | 51 | if (gpio_data->inverted) |
52 | tmp = !tmp; | 52 | tmp = !tmp; |
53 | 53 | ||
54 | if (tmp) { | 54 | if (tmp) { |
55 | if (gpio_data->desired_brightness) | 55 | if (gpio_data->desired_brightness) |
56 | led_set_brightness(gpio_data->led, | 56 | led_set_brightness(gpio_data->led, |
57 | gpio_data->desired_brightness); | 57 | gpio_data->desired_brightness); |
58 | else | 58 | else |
59 | led_set_brightness(gpio_data->led, LED_FULL); | 59 | led_set_brightness(gpio_data->led, LED_FULL); |
60 | } else { | 60 | } else { |
61 | led_set_brightness(gpio_data->led, LED_OFF); | 61 | led_set_brightness(gpio_data->led, LED_OFF); |
62 | } | 62 | } |
63 | } | 63 | } |
64 | 64 | ||
65 | static ssize_t gpio_trig_brightness_show(struct device *dev, | 65 | static ssize_t gpio_trig_brightness_show(struct device *dev, |