Remove .owner field initialization as the core will do it.
Generated by: scripts/coccinelle/api/platform_no_drv_owner.cocci
CC: Dmitry Torokhov <dtor@chromium.org>
Signed-off-by: Julia Lawall <julia.lawall@lip6.fr>
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
 static struct platform_driver async_driver = {
        .driver = {
                .name = "test_async_driver",
-               .owner = THIS_MODULE,
                .probe_type = PROBE_PREFER_ASYNCHRONOUS,
        },
        .probe = test_probe,
 static struct platform_driver sync_driver = {
        .driver = {
                .name = "test_sync_driver",
-               .owner = THIS_MODULE,
                .probe_type = PROBE_FORCE_SYNCHRONOUS,
        },
        .probe = test_probe,