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

Commit a99cc82b authored by Arnd Bergmann's avatar Arnd Bergmann Committed by Uwe Kleine-König
Browse files

powerpc/fsl_msi: drop unneeded cast to non-const pointer



This cast is unneeded since *of_device_id.data became const.

[ukl: split Arnd's patch by driver and add changelog]

Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
Acked-by: default avatarBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
parent c06e6769
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -502,15 +502,15 @@ static const struct fsl_msi_feature vmpic_msi_feature = {
static const struct of_device_id fsl_of_msi_ids[] = {
	{
		.compatible = "fsl,mpic-msi",
		.data = (void *)&mpic_msi_feature,
		.data = &mpic_msi_feature,
	},
	{
		.compatible = "fsl,ipic-msi",
		.data = (void *)&ipic_msi_feature,
		.data = &ipic_msi_feature,
	},
	{
		.compatible = "fsl,vmpic-msi",
		.data = (void *)&vmpic_msi_feature,
		.data = &vmpic_msi_feature,
	},
	{}
};