diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 18:20:25 +0400 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 18:20:25 +0400 |
commit | 5573bc03c63e4be7de501a91cca2acc5a44ec4dd (patch) | |
tree | 47e2a961f5c03fdf9bd1f3cb28b18a70f4ac277e /drivers/crypto/n2_core.c | |
parent | c6ec883212a9f7a341c16dc141e41c40b2b2c238 (diff) | |
download | linux-5573bc03c63e4be7de501a91cca2acc5a44ec4dd.tar.xz |
crypto: 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>
Diffstat (limited to 'drivers/crypto/n2_core.c')
-rw-r--r-- | drivers/crypto/n2_core.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/drivers/crypto/n2_core.c b/drivers/crypto/n2_core.c index f8e3207fecb1..afd136b45f49 100644 --- a/drivers/crypto/n2_core.c +++ b/drivers/crypto/n2_core.c @@ -2210,7 +2210,6 @@ MODULE_DEVICE_TABLE(of, n2_crypto_match); static struct platform_driver n2_crypto_driver = { .driver = { .name = "n2cp", - .owner = THIS_MODULE, .of_match_table = n2_crypto_match, }, .probe = n2_crypto_probe, @@ -2238,7 +2237,6 @@ MODULE_DEVICE_TABLE(of, n2_mau_match); static struct platform_driver n2_mau_driver = { .driver = { .name = "ncp", - .owner = THIS_MODULE, .of_match_table = n2_mau_match, }, .probe = n2_mau_probe, |