diff options
| author | Samu Onkalo <samu.p.onkalo@nokia.com> | 2009-12-14 21:01:39 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-12-15 11:53:36 -0500 |
| commit | 66c8569bf990064b3f11e0f211a81a46e0b627ff (patch) | |
| tree | 8e2a9b2b310b8fa4a7d097427be6ee35a01d1cd5 | |
| parent | d25a8c811515b7bbd2c864f0e20bd33312b4ea1a (diff) | |
lis3lv02d: correct memory leak in module unload
polled input device itself was not free'd.
Signed-off-by: Samu Onkalo <samu.p.onkalo@nokia.com>
Tested-by: Éric Piel <eric.piel@tremplin-utc.net>
Acked-by: Éric Piel <eric.piel@tremplin-utc.net>
Cc: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | drivers/hwmon/lis3lv02d.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/hwmon/lis3lv02d.c b/drivers/hwmon/lis3lv02d.c index 7f43a3b62a24..dbd0b055d4b9 100644 --- a/drivers/hwmon/lis3lv02d.c +++ b/drivers/hwmon/lis3lv02d.c | |||
| @@ -333,6 +333,7 @@ void lis3lv02d_joystick_disable(void) | |||
| 333 | if (lis3_dev.irq) | 333 | if (lis3_dev.irq) |
| 334 | misc_deregister(&lis3lv02d_misc_device); | 334 | misc_deregister(&lis3lv02d_misc_device); |
| 335 | input_unregister_polled_device(lis3_dev.idev); | 335 | input_unregister_polled_device(lis3_dev.idev); |
| 336 | input_free_polled_device(lis3_dev.idev); | ||
| 336 | lis3_dev.idev = NULL; | 337 | lis3_dev.idev = NULL; |
| 337 | } | 338 | } |
| 338 | EXPORT_SYMBOL_GPL(lis3lv02d_joystick_disable); | 339 | EXPORT_SYMBOL_GPL(lis3lv02d_joystick_disable); |
