Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e714b470 authored by Markus Elfring's avatar Markus Elfring Committed by Vinod Koul
Browse files

ste_dma40: Rename a jump label in d40_free_dma()



Adjust a jump label according to the current Linux coding style convention.

Signed-off-by: default avatarMarkus Elfring <elfring@users.sourceforge.net>
Reviewed-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarVinod Koul <vinod.koul@intel.com>
parent 5a5eecb3
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -2047,7 +2047,7 @@ static int d40_free_dma(struct d40_chan *d40c)
	res = d40_channel_execute_command(d40c, D40_DMA_STOP);
	if (res) {
		chan_err(d40c, "stop failed\n");
		goto out;
		goto mark_last_busy;
	}

	d40_alloc_mask_free(phy, is_src, chan_is_logical(d40c) ? event : 0);
@@ -2065,8 +2065,7 @@ static int d40_free_dma(struct d40_chan *d40c)
	d40c->busy = false;
	d40c->phy_chan = NULL;
	d40c->configured = false;
out:

 mark_last_busy:
	pm_runtime_mark_last_busy(d40c->base->dev);
	pm_runtime_put_autosuspend(d40c->base->dev);
	return res;