mux: mux-core: unregister mux_class in mux_exit()

Fixes an obvious and nasty typo.

Fixes: a3b02a9c65 ("mux: minimal mux subsystem")
Signed-off-by: Kuppuswamy Sathyanarayanan <sathyanarayanan.kuppuswamy@linux.intel.com>
Signed-off-by: Peter Rosin <peda@axentia.se>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Kuppuswamy Sathyanarayanan 2017-07-10 14:45:34 +02:00 committed by Greg Kroah-Hartman
parent 4c19c0ec73
commit 998849967c
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ static int __init mux_init(void)
static void __exit mux_exit(void)
{
class_register(&mux_class);
class_unregister(&mux_class);
ida_destroy(&mux_ida);
}