diff options
author | 2025-01-31 14:58:43 +0100 | |
---|---|---|
committer | 2025-02-11 10:20:18 +0000 | |
commit | 8c71b34c636cabb4101098cc6bb619ded9b0905f (patch) | |
tree | 3049b1703c229481a3311bb1c2fdd89d4b6f8e2f | |
parent | backlight: locomolcd: Do not include <linux/fb.h> (diff) | |
download | wireguard-linux-8c71b34c636cabb4101098cc6bb619ded9b0905f.tar.xz wireguard-linux-8c71b34c636cabb4101098cc6bb619ded9b0905f.zip |
backlight: lv5207lp: Do not include <linux/fb.h>
This driver does not require <linux/fb.h>. Remove the include
statement.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Link: https://lore.kernel.org/r/20250131140103.278158-13-tzimmermann@suse.de
Signed-off-by: Lee Jones <lee@kernel.org>
-rw-r--r-- | drivers/video/backlight/lv5207lp.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/video/backlight/lv5207lp.c b/drivers/video/backlight/lv5207lp.c index 5f60989fa70f..a205f004eab2 100644 --- a/drivers/video/backlight/lv5207lp.c +++ b/drivers/video/backlight/lv5207lp.c @@ -9,7 +9,6 @@ #include <linux/backlight.h> #include <linux/err.h> -#include <linux/fb.h> #include <linux/i2c.h> #include <linux/module.h> #include <linux/platform_data/lv5207lp.h> |