Message ID | 9b39a59f5829d200d7d1fac4e993dbf8ce05836d.1684578051.git.christophe.jaillet@wanadoo.fr |
---|---|
State | Accepted |
Commit | 8c03fd5fbd3e5a534675dffd5647166e919e1fc2 |
Headers | show |
Series | ASoC: atmel: sam9g20_wm8731: Remove the unneeded include <linux/i2c.h> | expand |
On Sat, 20 May 2023 12:21:58 +0200, Christophe JAILLET wrote: > This driver does not use i2c, so there is no point in including > <linux/i2c.h> > > Remove it. > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/1] ASoC: atmel: sam9g20_wm8731: Remove the unneeded include <linux/i2c.h> commit: 8c03fd5fbd3e5a534675dffd5647166e919e1fc2 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/sound/soc/atmel/sam9g20_wm8731.c b/sound/soc/atmel/sam9g20_wm8731.c index baf38964b491..0405e9e49140 100644 --- a/sound/soc/atmel/sam9g20_wm8731.c +++ b/sound/soc/atmel/sam9g20_wm8731.c @@ -23,7 +23,6 @@ #include <linux/timer.h> #include <linux/interrupt.h> #include <linux/platform_device.h> -#include <linux/i2c.h> #include <linux/of.h> #include <linux/atmel-ssc.h>
This driver does not use i2c, so there is no point in including <linux/i2c.h> Remove it. Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr> --- Based on one of my scripts, this reduce the number of included files from 589 to 498 --- sound/soc/atmel/sam9g20_wm8731.c | 1 - 1 file changed, 1 deletion(-)