diff mbox series

ASoC: wm8731: Delete empty remove() function

Message ID 20220211165811.1176005-1-broonie@kernel.org (mailing list archive)
State Accepted
Commit 0b88a659002151e354272a13ae29d8b795ef1b46
Headers show
Series ASoC: wm8731: Delete empty remove() function | expand

Commit Message

Mark Brown Feb. 11, 2022, 4:58 p.m. UTC
The I2C remove function is empty for the wm8731 driver, it can just be
deleted.

Signed-off-by: Mark Brown <broonie@kernel.org>
---
 sound/soc/codecs/wm8731.c | 6 ------
 1 file changed, 6 deletions(-)

Comments

Charles Keepax Feb. 11, 2022, 5:19 p.m. UTC | #1
On Fri, Feb 11, 2022 at 04:58:11PM +0000, Mark Brown wrote:
> The I2C remove function is empty for the wm8731 driver, it can just be
> deleted.
> 
> Signed-off-by: Mark Brown <broonie@kernel.org>
> ---

Acked-by: Charles Keepax <ckeepax@opensource.cirrus.com>

Thanks,
Charles
Mark Brown Feb. 14, 2022, 2:56 p.m. UTC | #2
On Fri, 11 Feb 2022 16:58:11 +0000, Mark Brown wrote:
> The I2C remove function is empty for the wm8731 driver, it can just be
> deleted.
> 
> 

Applied to

   https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next

Thanks!

[1/1] ASoC: wm8731: Delete empty remove() function
      commit: 0b88a659002151e354272a13ae29d8b795ef1b46

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 mbox series

Patch

diff --git a/sound/soc/codecs/wm8731.c b/sound/soc/codecs/wm8731.c
index 86b1f6eaa599..5d4949c2ec9b 100644
--- a/sound/soc/codecs/wm8731.c
+++ b/sound/soc/codecs/wm8731.c
@@ -777,11 +777,6 @@  static int wm8731_i2c_probe(struct i2c_client *i2c,
 	return 0;
 }
 
-static int wm8731_i2c_remove(struct i2c_client *client)
-{
-	return 0;
-}
-
 static const struct i2c_device_id wm8731_i2c_id[] = {
 	{ "wm8731", 0 },
 	{ }
@@ -794,7 +789,6 @@  static struct i2c_driver wm8731_i2c_driver = {
 		.of_match_table = wm8731_of_match,
 	},
 	.probe =    wm8731_i2c_probe,
-	.remove =   wm8731_i2c_remove,
 	.id_table = wm8731_i2c_id,
 };
 #endif