diff options
author | Thomas Zimmermann <[email protected]> | 2024-02-19 10:37:28 +0100 |
---|---|---|
committer | Thomas Zimmermann <[email protected]> | 2024-02-28 09:59:27 +0100 |
commit | 009c95c82e87a66cc494e9c14183892b17d04bfe (patch) | |
tree | 69a5a24bb2aec152e2fc71d2da091c0b46dfc7e4 | |
parent | 379ca03b727988e0f0265d496d84eda450b020b3 (diff) |
staging/fbtft: Include <linux/backlight.h>
Resolves the proxy include via <linux/fb.h>, which does not require the
backlight header.
v3:
* fix grammar in commit message
Signed-off-by: Thomas Zimmermann <[email protected]>
Acked-by: Jani Nikula <[email protected]>
Acked-by: Helge Deller <[email protected]>
Acked-by: Greg Kroah-Hartman <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
-rw-r--r-- | drivers/staging/fbtft/fb_ssd1351.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/staging/fbtft/fb_ssd1351.c b/drivers/staging/fbtft/fb_ssd1351.c index b8d55aa8c5c7..72172e870007 100644 --- a/drivers/staging/fbtft/fb_ssd1351.c +++ b/drivers/staging/fbtft/fb_ssd1351.c @@ -1,4 +1,6 @@ // SPDX-License-Identifier: GPL-2.0 + +#include <linux/backlight.h> #include <linux/module.h> #include <linux/kernel.h> #include <linux/init.h> |