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

Commit f4b5d2b0 authored by Lothar Waßmann's avatar Lothar Waßmann Committed by Sascha Hauer
Browse files

ARM: mxs: add a dma mask to fec devices



This is not strictly necessary but the right thing to do.

Signed-off-by: default avatarLothar Waßmann <LW@KARO-electronics.de>
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
parent c762b293
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -45,6 +45,7 @@ struct platform_device *__init mxs_add_fec(
		},
	};

	return mxs_add_platform_device("imx28-fec", data->id,
			res, ARRAY_SIZE(res), pdata, sizeof(*pdata));
	return mxs_add_platform_device_dmamask("imx28-fec", data->id,
			res, ARRAY_SIZE(res), pdata, sizeof(*pdata),
			DMA_BIT_MASK(32));
}