Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

fpga: ice40-spi: Don't use "proxy" headers

Update header inclusions to follow IWYU (Include What You Use)
principle.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Xu Yilun <yilun.xu@intel.com>
Link: https://lore.kernel.org/r/20240415142428.853812-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Xu Yilun <yilun.xu@linux.intel.com>

authored by

Andy Shevchenko and committed by
Xu Yilun
1eb3816c 4d2bc3f7

+2 -2
+2 -2
drivers/fpga/ice40-spi.c
··· 10 10 11 11 #include <linux/fpga/fpga-mgr.h> 12 12 #include <linux/gpio/consumer.h> 13 + #include <linux/mod_devicetable.h> 13 14 #include <linux/module.h> 14 - #include <linux/of_gpio.h> 15 15 #include <linux/spi/spi.h> 16 16 #include <linux/stringify.h> 17 17 ··· 199 199 .probe = ice40_fpga_probe, 200 200 .driver = { 201 201 .name = "ice40spi", 202 - .of_match_table = of_match_ptr(ice40_fpga_of_match), 202 + .of_match_table = ice40_fpga_of_match, 203 203 }, 204 204 .id_table = ice40_fpga_spi_ids, 205 205 };