]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
hwrng: pseries - remove incorrect __init/__exit markups
authorDmitry Torokhov <dmitry.torokhov@gmail.com>
Mon, 9 Mar 2015 17:36:38 +0000 (10:36 -0700)
committerHerbert Xu <herbert@gondor.apana.org.au>
Wed, 11 Mar 2015 14:11:06 +0000 (01:11 +1100)
commit257bedd4f39d53ca41c5c8e3f8e0d805607ae661
tree3e9d58150920c66109aa2ce908507acb1bc05a3b
parent87094a044ee894870d8784f51618a9b0d1fadc44
hwrng: pseries - remove incorrect __init/__exit markups

Even if bus is not hot-pluggable, the devices can be unbound from the
driver via sysfs, so we should not be using __exit annotations on
remove() methods. The only exception is drivers registered with
platform_driver_probe() which specifically disables sysfs bind/unbind
attributes.

Similarly probe() methods should not be marked __init unless
platform_driver_probe() is used.

Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
drivers/char/hw_random/pseries-rng.c