diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2019-12-02 13:30:28 +0300 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2019-12-16 13:32:27 +0300 |
commit | c8fdcc86725cc93a021139e8de68914857ea7489 (patch) | |
tree | 7dc733f927a119766fee7d242dc335988ef81fa0 /include/linux/platform_data | |
parent | edeec4fdc78008185eff2c352d75f048959af1d6 (diff) | |
download | linux-c8fdcc86725cc93a021139e8de68914857ea7489.tar.xz |
backlight: bd6107: Convert to use GPIO descriptor
The Rohm BD6107 driver can pass a fixed GPIO line using the old
GPIO API using platform data. As there are no in-tree users of this
platform data since 2013, we can convert this to use a GPIO descriptor
and require any out-of-tree consumers to pass the GPIO using
a machine descriptor table instead.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'include/linux/platform_data')
-rw-r--r-- | include/linux/platform_data/bd6107.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/platform_data/bd6107.h b/include/linux/platform_data/bd6107.h index 3bd019037eb3..54a06a4d2618 100644 --- a/include/linux/platform_data/bd6107.h +++ b/include/linux/platform_data/bd6107.h @@ -9,7 +9,6 @@ struct device; struct bd6107_platform_data { struct device *fbdev; - int reset; /* Reset GPIO */ unsigned int def_value; }; |