diff options
author | Arvind Yadav <arvind.yadav.cs@gmail.com> | 2017-11-11 13:09:18 -0500 |
---|---|---|
committer | Jassi Brar <jaswinder.singh@linaro.org> | 2017-11-14 09:51:35 -0500 |
commit | 1f90a2162fb3cdfd9c44380bf16209af00f7acbe (patch) | |
tree | 563b2b8cdeaee25dd60592c3c70a2a7b44c69752 | |
parent | e339c80af95e14de3712d69ddea09a3868fa14cd (diff) |
mailbox/omap: unregister mbox class
platform_driver_register() can fail here and we must unregister mbox
class.
Signed-off-by: Arvind Yadav <arvind.yadav.cs@gmail.com>
Acked-by: Suman Anna <s-anna@ti.com>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
-rw-r--r-- | drivers/mailbox/omap-mailbox.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/mailbox/omap-mailbox.c b/drivers/mailbox/omap-mailbox.c index c5e8b9cb170d..2517038a8452 100644 --- a/drivers/mailbox/omap-mailbox.c +++ b/drivers/mailbox/omap-mailbox.c | |||
@@ -906,7 +906,11 @@ static int __init omap_mbox_init(void) | |||
906 | mbox_kfifo_size = max_t(unsigned int, mbox_kfifo_size, | 906 | mbox_kfifo_size = max_t(unsigned int, mbox_kfifo_size, |
907 | sizeof(mbox_msg_t)); | 907 | sizeof(mbox_msg_t)); |
908 | 908 | ||
909 | return platform_driver_register(&omap_mbox_driver); | 909 | err = platform_driver_register(&omap_mbox_driver); |
910 | if (err) | ||
911 | class_unregister(&omap_mbox_class); | ||
912 | |||
913 | return err; | ||
910 | } | 914 | } |
911 | subsys_initcall(omap_mbox_init); | 915 | subsys_initcall(omap_mbox_init); |
912 | 916 | ||