u32 wmirq;
 };
 
-/* Function Prototypes */
-
-static int ppc4xx_edac_probe(struct platform_device *device);
-static int ppc4xx_edac_remove(struct platform_device *device);
-
 /* Global Variables */
 
 /*
 };
 MODULE_DEVICE_TABLE(of, ppc4xx_edac_match);
 
-static struct platform_driver ppc4xx_edac_driver = {
-       .probe                  = ppc4xx_edac_probe,
-       .remove                 = ppc4xx_edac_remove,
-       .driver = {
-               .name = PPC4XX_EDAC_MODULE_NAME,
-               .of_match_table = ppc4xx_edac_match,
-       },
-};
-
 /*
  * TODO: The row and channel parameters likely need to be dynamically
  * set based on the aforementioned variant controller realizations.
                             EDAC_OPSTATE_UNKNOWN_STR)));
 }
 
+static struct platform_driver ppc4xx_edac_driver = {
+       .probe                  = ppc4xx_edac_probe,
+       .remove                 = ppc4xx_edac_remove,
+       .driver = {
+               .name = PPC4XX_EDAC_MODULE_NAME,
+               .of_match_table = ppc4xx_edac_match,
+       },
+};
+
 /**
  * ppc4xx_edac_init - driver/module insertion entry point
  *