net: xilinx: Remove .owner field for driver
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>
This commit is contained in:
parent
5e3c516b51
commit
fdd42e4400
|
@ -1170,7 +1170,6 @@ static struct platform_driver temac_of_driver = {
|
|||
.probe = temac_of_probe,
|
||||
.remove = temac_of_remove,
|
||||
.driver = {
|
||||
.owner = THIS_MODULE,
|
||||
.name = "xilinx_temac",
|
||||
.of_match_table = temac_of_match,
|
||||
},
|
||||
|
|
|
@ -1645,7 +1645,6 @@ static struct platform_driver axienet_of_driver = {
|
|||
.probe = axienet_of_probe,
|
||||
.remove = axienet_of_remove,
|
||||
.driver = {
|
||||
.owner = THIS_MODULE,
|
||||
.name = "xilinx_axienet",
|
||||
.of_match_table = axienet_of_match,
|
||||
},
|
||||
|
|
|
@ -1245,7 +1245,6 @@ MODULE_DEVICE_TABLE(of, xemaclite_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,
|
||||
|
|
Loading…
Reference in New Issue