Commit 860660fd authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Russell King

ARM: 9055/1: mailbox: arm_mhuv2: make remove callback return void

My build tests failed to catch that amba driver that would have needed
adaption in commit 3fd269e7 ("amba: Make the remove callback return
void"). Change the remove function to make the driver build again.

Link: https://lore.kernel.org/r/20210202194308.jm66vblqjwr5wo6v@pengutronix.deReported-by: default avatarkernel test robot <lkp@intel.com>
Fixes: 3fd269e7 ("amba: Make the remove callback return void")
Acked-by: default avatarViresh Kumar <viresh.kumar@linaro.org>
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: default avatarRussell King <rmk+kernel@armlinux.org.uk>
parent 9d4d8572
...@@ -1095,14 +1095,12 @@ static int mhuv2_probe(struct amba_device *adev, const struct amba_id *id) ...@@ -1095,14 +1095,12 @@ static int mhuv2_probe(struct amba_device *adev, const struct amba_id *id)
return ret; return ret;
} }
static int mhuv2_remove(struct amba_device *adev) static void mhuv2_remove(struct amba_device *adev)
{ {
struct mhuv2 *mhu = amba_get_drvdata(adev); struct mhuv2 *mhu = amba_get_drvdata(adev);
if (mhu->frame == SENDER_FRAME) if (mhu->frame == SENDER_FRAME)
writel_relaxed(0x0, &mhu->send->access_request); writel_relaxed(0x0, &mhu->send->access_request);
return 0;
} }
static struct amba_id mhuv2_ids[] = { static struct amba_id mhuv2_ids[] = {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment