diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2020-02-20 10:00:32 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2020-03-25 09:30:46 +0000 |
commit | ee0c8e494cc3c135350cd5c4752e82af3feae1ab (patch) | |
tree | 94b35d2fb82825037254b1505aa9625ff3bd8b00 /include/linux/spi | |
parent | 2644f912b41012c1ce5ff9be99efeec721491b86 (diff) |
backlight: corgi: Convert to use GPIO descriptors
The code in the Corgi backlight driver can be considerably
simplified by moving to GPIO descriptors and lookup tables
from the board files instead of passing GPIO numbers using
the old API.
Make sure to encode inversion semantics for the Akita and
Spitz platforms inside the GPIO lookup table and drop the
custom inversion semantics from the driver.
All in-tree users are converted in this patch.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Robert Jarzmik <robert.jarzmik@free.fr>
Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'include/linux/spi')
-rw-r--r-- | include/linux/spi/corgi_lcd.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/linux/spi/corgi_lcd.h b/include/linux/spi/corgi_lcd.h index edf4beccdadb..0b857616919c 100644 --- a/include/linux/spi/corgi_lcd.h +++ b/include/linux/spi/corgi_lcd.h @@ -11,9 +11,6 @@ struct corgi_lcd_platform_data { int default_intensity; int limit_mask; - int gpio_backlight_on; /* -1 if n/a */ - int gpio_backlight_cont; /* -1 if n/a */ - void (*notify)(int intensity); void (*kick_battery)(void); }; |