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

Commit d41f950e authored by Lothar Waßmann's avatar Lothar Waßmann Committed by Brian Norris
Browse files

mtd: nand: gpmi-nand: janitorial cleanup: (commas after last element of struct initializer)

parent d255c59a
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -1691,19 +1691,19 @@ static const struct platform_device_id gpmi_ids[] = {
	{ .name = "imx23-gpmi-nand", .driver_data = IS_MX23, },
	{ .name = "imx28-gpmi-nand", .driver_data = IS_MX28, },
	{ .name = "imx6q-gpmi-nand", .driver_data = IS_MX6Q, },
	{},
	{}
};

static const struct of_device_id gpmi_nand_id_table[] = {
	{
		.compatible = "fsl,imx23-gpmi-nand",
		.data = (void *)&gpmi_ids[IS_MX23]
		.data = (void *)&gpmi_ids[IS_MX23],
	}, {
		.compatible = "fsl,imx28-gpmi-nand",
		.data = (void *)&gpmi_ids[IS_MX28]
		.data = (void *)&gpmi_ids[IS_MX28],
	}, {
		.compatible = "fsl,imx6q-gpmi-nand",
		.data = (void *)&gpmi_ids[IS_MX6Q]
		.data = (void *)&gpmi_ids[IS_MX6Q],
	}, {}
};
MODULE_DEVICE_TABLE(of, gpmi_nand_id_table);