Message ID | 20240213084403.20995-3-tzimmermann@suse.de (mailing list archive) |
---|---|
State | Awaiting Upstream |
Headers | show |
Series | fbdev: Clean up include dependencies in header | expand |
Am 13.02.24 um 09:42 schrieb Thomas Zimmermann: > Resolved the proxy include via <linux/fb.h>, which does not require the > backlight header. > > Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Acked by Jani via IRC Acked-by: Jani Nikula<jani.nikula@intel.com> > --- > drivers/staging/fbtft/fb_ssd1351.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/drivers/staging/fbtft/fb_ssd1351.c b/drivers/staging/fbtft/fb_ssd1351.c > index b8d55aa8c5c75..72172e870007e 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>
On Tue, Feb 13, 2024 at 09:42:20AM +0100, Thomas Zimmermann wrote: > Resolved the proxy include via <linux/fb.h>, which does not require the > backlight header. > > Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
diff --git a/drivers/staging/fbtft/fb_ssd1351.c b/drivers/staging/fbtft/fb_ssd1351.c index b8d55aa8c5c75..72172e870007e 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>
Resolved the proxy include via <linux/fb.h>, which does not require the backlight header. Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> --- drivers/staging/fbtft/fb_ssd1351.c | 2 ++ 1 file changed, 2 insertions(+)