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

Commit 8bffb77e authored by Sascha Hauer's avatar Sascha Hauer
Browse files

ARM i.MX DMA: return gracefully on different socs



Code called from an initcall can be maybe called for
machines it's not intended for. So check for valid
machines and return gracefully if an incompatible machine
is found.

Signed-off-by: default avatarSascha Hauer <s.hauer@pengutronix.de>
parent ec4bb253
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -818,7 +818,7 @@ static int __init imx_dma_init(void)
		imx_dmav1_baseaddr = MX27_IO_ADDRESS(MX27_DMA_BASE_ADDR);
	else
#endif
		BUG();
		return 0;

	dma_clk = clk_get(NULL, "dma");
	clk_enable(dma_clk);