Message ID | 20240830075800.3541646-1-lihongbo22@huawei.com (mailing list archive) |
---|---|
State | Accepted |
Commit | e3de1d8deb9f6429356eb81118aa1601c8a5a1b6 |
Headers | show |
Series | [-next] spi: spi-ppc4xx: Remove duplicate included header file linux/platform_device.h | expand |
On Fri, 30 Aug 2024 15:58:00 +0800, Hongbo Li wrote: > The header file linux/platform_device.h is included > twice. Remove the last one. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next Thanks! [1/1] spi: spi-ppc4xx: Remove duplicate included header file linux/platform_device.h commit: e3de1d8deb9f6429356eb81118aa1601c8a5a1b6 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/drivers/spi/spi-ppc4xx.c b/drivers/spi/spi-ppc4xx.c index 6071f83dd9c8..36722fa6c8bf 100644 --- a/drivers/spi/spi-ppc4xx.c +++ b/drivers/spi/spi-ppc4xx.c @@ -30,7 +30,6 @@ #include <linux/of_platform.h> #include <linux/interrupt.h> #include <linux/delay.h> -#include <linux/platform_device.h> #include <linux/spi/spi.h> #include <linux/spi/spi_bitbang.h>
The header file linux/platform_device.h is included twice. Remove the last one. Signed-off-by: Hongbo Li <lihongbo22@huawei.com> --- drivers/spi/spi-ppc4xx.c | 1 - 1 file changed, 1 deletion(-)