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

Commit e57b708b authored by Mike Williams's avatar Mike Williams Committed by Josh Boyer
Browse files

powerpc/4xx: edac: Add comma to fix build error



Commit 4018294b broke the ppc4xx_edac driver at
line 210 where the struct member is missing a comma.

Signed-off-by: default avatarMike Williams <mike@mikebwilliams.com>
Signed-off-by: default avatarJosh Boyer <jwboyer@gmail.com>
parent e7fa1d13
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -205,7 +205,7 @@ static struct platform_driver ppc4xx_edac_driver = {
	.remove			= ppc4xx_edac_remove,
	.driver = {
		.owner = THIS_MODULE,
		.name = PPC4XX_EDAC_MODULE_NAME
		.name = PPC4XX_EDAC_MODULE_NAME,
		.of_match_table = ppc4xx_edac_match,
	},
};