diff options
author | 2025-01-31 14:58:33 +0100 | |
---|---|---|
committer | 2025-02-11 10:20:18 +0000 | |
commit | 769562042211e7a194e3dfde9436b42a3734e279 (patch) | |
tree | 697c04c79d7878588c6e69d8534e05ebbc61ebee | |
parent | backlight: 88pm860x_bl: Do not include <linux/fb.h> (diff) | |
download | linux-rng-769562042211e7a194e3dfde9436b42a3734e279.tar.xz linux-rng-769562042211e7a194e3dfde9436b42a3734e279.zip |
backlight: adp5520_bl: 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-3-tzimmermann@suse.de
Signed-off-by: Lee Jones <lee@kernel.org>
-rw-r--r-- | drivers/video/backlight/adp5520_bl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/video/backlight/adp5520_bl.c b/drivers/video/backlight/adp5520_bl.c index aa5c15e8db86..81c40d355aae 100644 --- a/drivers/video/backlight/adp5520_bl.c +++ b/drivers/video/backlight/adp5520_bl.c @@ -8,7 +8,6 @@ #include <linux/kernel.h> #include <linux/init.h> #include <linux/platform_device.h> -#include <linux/fb.h> #include <linux/backlight.h> #include <linux/mfd/adp5520.h> #include <linux/slab.h> |