]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
Staging: fsl-mc: bus: Drop owner assignment from platform_driver
authorBhumika Goyal <bhumirks@gmail.com>
Thu, 18 Feb 2016 05:49:38 +0000 (11:19 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 20 Feb 2016 23:14:59 +0000 (15:14 -0800)
For platform_driver, we don't need to set .owner field as is set by
platform driver core. The semantic patch used here first checks whether
platform_driver struct was actually used in a call to set the .owner
field.
The coccinelle script that generated the patch can be found here:
http://www.spinics.net/lists/kernel/msg2029903.html

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/fsl-mc/bus/mc-bus.c

index 9317561973b1a3feea51c4a3e1b04f8c8edb9374..c42bfac0adef9438a03b2f86628bc87e2423bd93 100644 (file)
@@ -795,7 +795,6 @@ MODULE_DEVICE_TABLE(of, fsl_mc_bus_match_table);
 static struct platform_driver fsl_mc_bus_driver = {
        .driver = {
                   .name = "fsl_mc_bus",
-                  .owner = THIS_MODULE,
                   .pm = NULL,
                   .of_match_table = fsl_mc_bus_match_table,
                   },