diff options
author | Andy Shevchenko <andriy.shevchenko@linux.intel.com> | 2022-11-01 17:09:46 +0200 |
---|---|---|
committer | Helge Deller <deller@gmx.de> | 2022-12-14 20:01:48 +0100 |
commit | 025e3b507a3a8e1ee96a3112bb67495c77d6cdb6 (patch) | |
tree | a8743b5d3a6330b16bf08cd1c34b16a66aafbf72 /drivers/video | |
parent | c7020e1b346d5840e93b58cc4f2c67fc645d8df9 (diff) | |
download | linux-025e3b507a3a8e1ee96a3112bb67495c77d6cdb6.tar.gz linux-025e3b507a3a8e1ee96a3112bb67495c77d6cdb6.tar.bz2 linux-025e3b507a3a8e1ee96a3112bb67495c77d6cdb6.zip |
fbdev: ssd1307fb: Drop optional dependency
Only a single out of three devices need a PWM, so from driver it's
optional. Moreover it's a single driver in the entire kernel that
currently selects PWM. Unfortunately this selection is a root cause
of the circular dependencies when we want to enable optional PWM
for some other drivers that select GPIOLIB.
Fixes: a2ed00da5047 ("drivers/video: add support for the Solomon SSD1307 OLED Controller")
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: Helge Deller <deller@gmx.de>
Diffstat (limited to 'drivers/video')
-rw-r--r-- | drivers/video/fbdev/Kconfig | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/video/fbdev/Kconfig b/drivers/video/fbdev/Kconfig index 71019b167f8b..66f36b69e8f3 100644 --- a/drivers/video/fbdev/Kconfig +++ b/drivers/video/fbdev/Kconfig @@ -2254,7 +2254,6 @@ config FB_SSD1307 select FB_SYS_COPYAREA select FB_SYS_IMAGEBLIT select FB_DEFERRED_IO - select PWM select FB_BACKLIGHT help This driver implements support for the Solomon SSD1307 |