The patch titled
HIL: fix improper call of release_region v2
has been removed from the -mm tree. Its filename was
hil-fix-improper-call-of-release_region-v2.patch
This patch was dropped because it was merged into mainline or a subsystem tree
------------------------------------------------------
Subject: HIL: fix improper call of release_region v2
From: "Cyrill V. Gorcunov" <[EMAIL PROTECTED]>
Thist patch prevents from improper call of release_region
if the code has been compiled without CONFIG_HP300 support.
Signed-off-by: Cyrill V. Gorcunov <[EMAIL PROTECTED]>
Acked-by: Helge Deller <[EMAIL PROTECTED]>
Cc: "Dmitry Torokhov" <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
---
drivers/input/keyboard/hilkbd.c | 2 ++
1 files changed, 2 insertions(+)
diff -puN
drivers/input/keyboard/hilkbd.c~hil-fix-improper-call-of-release_region-v2
drivers/input/keyboard/hilkbd.c
--- a/drivers/input/keyboard/hilkbd.c~hil-fix-improper-call-of-release_region-v2
+++ a/drivers/input/keyboard/hilkbd.c
@@ -294,8 +294,10 @@ err3:
disable_irq(HIL_IRQ);
free_irq(HIL_IRQ, hil_dev.dev_id);
err2:
+#if defined(CONFIG_HP300)
release_region(HILBASE + HIL_DATA, 2);
err1:
+#endif
input_free_device(hil_dev.dev);
hil_dev.dev = NULL;
return err;
_
Patches currently in -mm which might be from [EMAIL PROTECTED] are
origin.patch
git-input.patch
-
To unsubscribe from this list: send the line "unsubscribe mm-commits" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html