diff options
author | 2025-01-31 14:58:45 +0100 | |
---|---|---|
committer | 2025-02-11 10:20:18 +0000 | |
commit | d520ae4707fd6dafcb55649460059f67f54fc743 (patch) | |
tree | 6c4ebd9937cb87cdbecf2adfc0043bb819240a61 | |
parent | backlight: max8925_bl: Do not include <linux/fb.h> (diff) | |
download | wireguard-linux-d520ae4707fd6dafcb55649460059f67f54fc743.tar.xz wireguard-linux-d520ae4707fd6dafcb55649460059f67f54fc743.zip |
backlight: tps65217_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-15-tzimmermann@suse.de
Signed-off-by: Lee Jones <lee@kernel.org>
-rw-r--r-- | drivers/video/backlight/tps65217_bl.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/video/backlight/tps65217_bl.c b/drivers/video/backlight/tps65217_bl.c index d96d713fe7db..8aa860350644 100644 --- a/drivers/video/backlight/tps65217_bl.c +++ b/drivers/video/backlight/tps65217_bl.c @@ -11,7 +11,6 @@ #include <linux/kernel.h> #include <linux/backlight.h> #include <linux/err.h> -#include <linux/fb.h> #include <linux/mfd/tps65217.h> #include <linux/module.h> #include <linux/platform_device.h> |