From: Christophe JAILLET Date: Tue, 28 Dec 2021 21:09:17 +0000 (+0100) Subject: HID: magicmouse: Fix an error handling path in magicmouse_probe() X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=2884aac078745798419f74cfc13025558e718541;p=linux.git HID: magicmouse: Fix an error handling path in magicmouse_probe() commit 33812fc7c8d77a43b7e2bf36a0d5a57c277a4b0c upstream. If the timer introduced by the commit below is started, then it must be deleted in the error handling of the probe. Otherwise it would trigger once the driver is no more. Fixes: 0b91b4e4dae6 ("HID: magicmouse: Report battery level over USB") Signed-off-by: Christophe JAILLET Tested-by: José Expósito Reported-by: Signed-off-by: Jiri Kosina Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/hid/hid-magicmouse.c b/drivers/hid/hid-magicmouse.c index eba1e8087bfd1..b8b08f0a8c541 100644 --- a/drivers/hid/hid-magicmouse.c +++ b/drivers/hid/hid-magicmouse.c @@ -873,6 +873,7 @@ static int magicmouse_probe(struct hid_device *hdev, return 0; err_stop_hw: + del_timer_sync(&msc->battery_timer); hid_hw_stop(hdev); return ret; }