net: ethernet: apple: drop owner assignment from platform_drivers

A platform_driver does not need to set an owner, it will be populated by the
driver core.

Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
Wolfram Sang 2014-10-20 16:21:04 +02:00
parent 884df0a314
commit 69ddb8a2c8

View file

@ -768,7 +768,6 @@ static struct platform_driver mac_mace_driver = {
.remove = mac_mace_device_remove, .remove = mac_mace_device_remove,
.driver = { .driver = {
.name = mac_mace_string, .name = mac_mace_string,
.owner = THIS_MODULE,
}, },
}; };