diff options
author | Thomas Zimmermann <tzimmermann@suse.de> | 2024-09-06 09:52:42 +0200 |
---|---|---|
committer | Lee Jones <lee@kernel.org> | 2024-09-30 16:49:42 +0100 |
commit | 0d580d99749e759b62dc8e28f511310e9235da7a (patch) | |
tree | 7efe887c6e8dc0e341c32ea440b55e4f588ee98d | |
parent | 02e224d096ef58fe59e96609de6018e133f33512 (diff) |
backlight: lcd: Do not include <linux/fb.h> in lcd header
With the exception of fb_notifier_callback(), none of the lcd code
uses fbdev; especially not the lcd drivers. Remove the include
statement for <linux/fb.h> from the public lcd header.
v2:
- fix typos in commit description
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Daniel Thompson <daniel.thompson@linaro.org>
Link: https://lore.kernel.org/r/20240906075439.98476-29-tzimmermann@suse.de
Signed-off-by: Lee Jones <lee@kernel.org>
-rw-r--r-- | include/linux/lcd.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/linux/lcd.h b/include/linux/lcd.h index 59a80b396a71..c3ccdff4519a 100644 --- a/include/linux/lcd.h +++ b/include/linux/lcd.h @@ -12,7 +12,6 @@ #include <linux/device.h> #include <linux/mutex.h> #include <linux/notifier.h> -#include <linux/fb.h> #define LCD_POWER_ON (0) #define LCD_POWER_REDUCED (1) // deprecated; don't use in new code |