There is no need to init .owner field.
Based on the patch from Peter Griffin <peter.griffin@linaro.org>
"mmc: remove .owner field for drivers using module_platform_driver"
This patch removes the superflous .owner field for drivers which
use the module_platform_driver API, as this is overriden in
platform_driver_register anyway."
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
        .probe = temac_of_probe,
        .remove = temac_of_remove,
        .driver = {
-               .owner = THIS_MODULE,
                .name = "xilinx_temac",
                .of_match_table = temac_of_match,
        },
 
        .probe = axienet_of_probe,
        .remove = axienet_of_remove,
        .driver = {
-                .owner = THIS_MODULE,
                 .name = "xilinx_axienet",
                 .of_match_table = axienet_of_match,
        },
 
 static struct platform_driver xemaclite_of_driver = {
        .driver = {
                .name = DRIVER_NAME,
-               .owner = THIS_MODULE,
                .of_match_table = xemaclite_of_match,
        },
        .probe          = xemaclite_of_probe,