diff options
author | Andy Shevchenko <[email protected]> | 2024-04-23 20:36:23 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <[email protected]> | 2024-05-04 18:39:24 +0200 |
commit | aae7272403a5b0c81e5d0f33bfd7296fdb117b2b (patch) | |
tree | 928bb8bbd14c54b26fec090926883c0b48bf4a8d | |
parent | 75ff53c44f5e151d21d949416633b56e56160124 (diff) |
fbtft: seps525: Don't use "proxy" headers
Update header inclusions to follow IWYU (Include What You Use)
principle.
Signed-off-by: Andy Shevchenko <[email protected]>
Acked-by: Michael Hennerich <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Greg Kroah-Hartman <[email protected]>
-rw-r--r-- | drivers/staging/fbtft/fb_seps525.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/drivers/staging/fbtft/fb_seps525.c b/drivers/staging/fbtft/fb_seps525.c index 05882e2cde7f..46c257308b49 100644 --- a/drivers/staging/fbtft/fb_seps525.c +++ b/drivers/staging/fbtft/fb_seps525.c @@ -16,11 +16,10 @@ * GNU General Public License for more details. */ -#include <linux/module.h> -#include <linux/kernel.h> -#include <linux/init.h> -#include <linux/gpio.h> +#include <linux/bits.h> #include <linux/delay.h> +#include <linux/init.h> +#include <linux/module.h> #include "fbtft.h" |