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

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

Acked-by: default avatarHuang Shijie <b32955@freescale.com>
Signed-off-by: default avatarLothar Waßmann <LW@KARO-electronics.de>
Signed-off-by: default avatarArtem Bityutskiy <artem.bityutskiy@linux.intel.com>
parent d255c59a
...@@ -1691,19 +1691,19 @@ static const struct platform_device_id gpmi_ids[] = { ...@@ -1691,19 +1691,19 @@ static const struct platform_device_id gpmi_ids[] = {
{ .name = "imx23-gpmi-nand", .driver_data = IS_MX23, }, { .name = "imx23-gpmi-nand", .driver_data = IS_MX23, },
{ .name = "imx28-gpmi-nand", .driver_data = IS_MX28, }, { .name = "imx28-gpmi-nand", .driver_data = IS_MX28, },
{ .name = "imx6q-gpmi-nand", .driver_data = IS_MX6Q, }, { .name = "imx6q-gpmi-nand", .driver_data = IS_MX6Q, },
{}, {}
}; };
static const struct of_device_id gpmi_nand_id_table[] = { static const struct of_device_id gpmi_nand_id_table[] = {
{ {
.compatible = "fsl,imx23-gpmi-nand", .compatible = "fsl,imx23-gpmi-nand",
.data = (void *)&gpmi_ids[IS_MX23] .data = (void *)&gpmi_ids[IS_MX23],
}, { }, {
.compatible = "fsl,imx28-gpmi-nand", .compatible = "fsl,imx28-gpmi-nand",
.data = (void *)&gpmi_ids[IS_MX28] .data = (void *)&gpmi_ids[IS_MX28],
}, { }, {
.compatible = "fsl,imx6q-gpmi-nand", .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); MODULE_DEVICE_TABLE(of, gpmi_nand_id_table);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment