Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6124c53e authored by Michał Kępień's avatar Michał Kępień Committed by Johannes Berg
Browse files

rfkill: Cleanup error handling in rfkill_init()



Use a separate label per error condition in rfkill_init() to make it a
bit cleaner and easier to extend.

Signed-off-by: default avatarMichał Kępień <kernel@kempniu.pl>
Signed-off-by: default avatarJohannes Berg <johannes.berg@intel.com>
parent 4a5eccaa
Loading
Loading
Loading
Loading
+12 −11
Original line number Diff line number Diff line
@@ -1263,24 +1263,25 @@ static int __init rfkill_init(void)

	error = class_register(&rfkill_class);
	if (error)
		goto out;
		goto error_class;

	error = misc_register(&rfkill_miscdev);
	if (error) {
		class_unregister(&rfkill_class);
		goto out;
	}
	if (error)
		goto error_misc;

#ifdef CONFIG_RFKILL_INPUT
	error = rfkill_handler_init();
	if (error) {
		misc_deregister(&rfkill_miscdev);
		class_unregister(&rfkill_class);
		goto out;
	}
	if (error)
		goto error_input;
#endif

 out:
	return 0;

error_input:
	misc_deregister(&rfkill_miscdev);
error_misc:
	class_unregister(&rfkill_class);
error_class:
	return error;
}
subsys_initcall(rfkill_init);