summaryrefslogtreecommitdiff
path: root/drivers/mfd
diff options
context:
space:
mode:
authorDawei Li <set_pte_at@outlook.com>2023-01-06 18:13:49 +0300
committerTakashi Iwai <tiwai@suse.de>2023-01-25 11:34:20 +0300
commit7351324c6f486ae35865b430c8e30f07da9f378e (patch)
tree4b2071e1659befd4456ccca9c5874341788c9e39 /drivers/mfd
parentbea11f0aa17a42303cfe9dae780bfc36f1947605 (diff)
downloadlinux-7351324c6f486ae35865b430c8e30f07da9f378e.tar.xz
ALSA: ac97: make remove callback of ac97 driver void returned
Since commit fc7a6209d571 ("bus: Make remove callback return void") forces bus_type::remove be void-returned, it doesn't make much sense for any bus based driver implementing remove callbalk to return non-void to its caller. As such, change the remove function for ac97 based drivers to return void. Signed-off-by: Dawei Li <set_pte_at@outlook.com> Link: https://lore.kernel.org/r/TYCP286MB2323A5AB1B2578EF4FA15DA7CAFB9@TYCP286MB2323.JPNP286.PROD.OUTLOOK.COM Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'drivers/mfd')
-rw-r--r--drivers/mfd/wm97xx-core.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/mfd/wm97xx-core.c b/drivers/mfd/wm97xx-core.c
index 9a2331eb1bfa..663acbb1854c 100644
--- a/drivers/mfd/wm97xx-core.c
+++ b/drivers/mfd/wm97xx-core.c
@@ -319,13 +319,11 @@ err_free_compat:
return ret;
}
-static int wm97xx_ac97_remove(struct ac97_codec_device *adev)
+static void wm97xx_ac97_remove(struct ac97_codec_device *adev)
{
struct wm97xx_priv *wm97xx = ac97_get_drvdata(adev);
snd_ac97_compat_release(wm97xx->ac97);
-
- return 0;
}
static const struct ac97_id wm97xx_ac97_ids[] = {