mirror of https://gitee.com/openkylin/linux.git
Staging: fsl-mc: bus: Drop owner assignment from platform_driver
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>
This commit is contained in:
parent
e26bf889dd
commit
453dd922c4
|
@ -795,7 +795,6 @@ MODULE_DEVICE_TABLE(of, fsl_mc_bus_match_table);
|
||||||
static struct platform_driver fsl_mc_bus_driver = {
|
static struct platform_driver fsl_mc_bus_driver = {
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "fsl_mc_bus",
|
.name = "fsl_mc_bus",
|
||||||
.owner = THIS_MODULE,
|
|
||||||
.pm = NULL,
|
.pm = NULL,
|
||||||
.of_match_table = fsl_mc_bus_match_table,
|
.of_match_table = fsl_mc_bus_match_table,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue