staging: fsl-mc: Added missing initializer in fsl_mc_bus_driver
owner needs to be initialized as THIS_MOUDLE. Signed-off-by: J. German Rivera <German.Rivera@freescale.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
a17f4aa627
commit
4e65f46aba
|
@ -790,6 +790,7 @@ 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