From: Wolfram Sang Date: Mon, 20 Oct 2014 14:20:26 +0000 (+0200) Subject: crypto: qce: drop owner assignment from platform_drivers X-Git-Tag: v3.19-rc1~78^2~25^2~244 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3b1b4f540d0dd5c8fe777bf02b9f87ffae100b15;p=karo-tx-linux.git crypto: qce: 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 --- diff --git a/drivers/crypto/qce/core.c b/drivers/crypto/qce/core.c index 33ae3545dc48..718b32a3112e 100644 --- a/drivers/crypto/qce/core.c +++ b/drivers/crypto/qce/core.c @@ -273,7 +273,6 @@ static struct platform_driver qce_crypto_driver = { .probe = qce_crypto_probe, .remove = qce_crypto_remove, .driver = { - .owner = THIS_MODULE, .name = KBUILD_MODNAME, .of_match_table = qce_crypto_of_match, },