commit | f368ed6088ae9c1fbe1c897bb5f215ce5e63fa1e | [log] [tgz] |
---|---|---|
author | Greg Kroah-Hartman <[email protected]> | Thu Jul 30 15:59:57 2015 -0700 |
committer | Greg Kroah-Hartman <[email protected]> | Wed Aug 05 10:35:49 2015 -0700 |
tree | a9ed27128f04f21ed0f205ec94a1ad0dbf746bb4 | |
parent | 379e4f756b915bcc35958365e5d1326b3b54efce [diff] |
char: make misc_deregister a void function With well over 200+ users of this api, there are a mere 12 users that actually checked the return value of this function. And all of them really didn't do anything with that information as the system or module was shutting down no matter what. So stop pretending like it matters, and just return void from misc_deregister(). If something goes wrong in the call, you will get a WARNING splat in the syslog so you know how to fix up your driver. Other than that, there's nothing that can go wrong. Cc: Alasdair Kergon <[email protected]> Cc: Neil Brown <[email protected]> Cc: Oleg Drokin <[email protected]> Cc: Andreas Dilger <[email protected]> Cc: "Michael S. Tsirkin" <[email protected]> Cc: Wim Van Sebroeck <[email protected]> Cc: Christine Caulfield <[email protected]> Cc: David Teigland <[email protected]> Cc: Mark Fasheh <[email protected]> Acked-by: Joel Becker <[email protected]> Acked-by: Alexandre Belloni <[email protected]> Acked-by: Alessandro Zummo <[email protected]> Acked-by: Mike Snitzer <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>