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

Commit af045b86 authored by Dmitry Torokhov's avatar Dmitry Torokhov
Browse files

Input: i8042 - fix device removal on unload

We need to call platform_device_unregister(i8042_platform_device)
before calling platform_driver_unregister() because i8042_remove()
resets i8042_platform_device to NULL. This leaves the platform device
instance behind and prevents driver reload.

Fixes https://bugzilla.kernel.org/show_bug.cgi?id=16613



Reported-by: default avatarSeryodkin Victor <vvscore@gmail.com>
Cc: stable@kernel.org
Signed-off-by: default avatarDmitry Torokhov <dtor@mail.ru>
parent 57157bec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1485,8 +1485,8 @@ static int __init i8042_init(void)

static void __exit i8042_exit(void)
{
	platform_driver_unregister(&i8042_driver);
	platform_device_unregister(i8042_platform_device);
	platform_driver_unregister(&i8042_driver);
	i8042_platform_exit();

	panic_blink = NULL;