diff options
author | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:20:20 +0200 |
---|---|---|
committer | Wolfram Sang <wsa@the-dreams.de> | 2014-10-20 16:20:20 +0200 |
commit | eff54802fe981a378555aebd86af0d11e83899ff (patch) | |
tree | 42bf305ca5bf70db91effbc73939c5731b44f328 /drivers/char/hw_random/tx4939-rng.c | |
parent | char: drop owner assignment from platform_drivers (diff) | |
download | linux-eff54802fe981a378555aebd86af0d11e83899ff.tar.xz linux-eff54802fe981a378555aebd86af0d11e83899ff.zip |
char: hw_random: 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/char/hw_random/tx4939-rng.c')
-rw-r--r-- | drivers/char/hw_random/tx4939-rng.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/char/hw_random/tx4939-rng.c b/drivers/char/hw_random/tx4939-rng.c index 09c5fbea2b93..a7b694913416 100644 --- a/drivers/char/hw_random/tx4939-rng.c +++ b/drivers/char/hw_random/tx4939-rng.c @@ -158,7 +158,6 @@ static int __exit tx4939_rng_remove(struct platform_device *dev) static struct platform_driver tx4939_rng_driver = { .driver = { .name = "tx4939-rng", - .owner = THIS_MODULE, }, .remove = tx4939_rng_remove, }; |