udev: add key release quirk for Samsung Q210/P210
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
udev (Ubuntu) |
Fix Released
|
Undecided
|
Martin Pitt |
Bug Description
Binary package hint: udev
We are dropping the temporary quirk below from the kernel and we need this added to the udev quirks:
commit 2677b2a82e60de2
Author: Keng-Yu Lin <email address hidden>
Date: Fri Dec 11 11:24:39 2009 +0800
UBUNTU: SAUCE: input: Add hotkey quirk for Samsung Q210/P210 laptops
BugLink: http://
Hotkeys do not produce release events. Add the quirk to force a key release.
In 2.6.32, a /sys interface is provided to handle setting from userspace.
It is not necessary to apply this patch to newer version than 2.6.31.
OriginalAuthor: Alexander Huhlaev <email address hidden>
Signed-off-by: Keng-Yu Lin <email address hidden>
Acked-by: Tim Gardner <email address hidden>
Acked-by: Colin King <email address hidden>
Signed-off-by: Stefan Bader <email address hidden>
Signed-off-by: Andy Whitcroft <email address hidden>
diff --git a/drivers/
index 4b22bb7..77a8068 100644
--- a/drivers/
+++ b/drivers/
@@ -1676,6 +1676,15 @@ static struct dmi_system_id atkbd_dmi_
.driver_data = atkbd_samsung_
},
{
+ .ident = "Samsung Q210/P210",
+ .matches = {
+ DMI_MATCH(
+ DMI_MATCH(
+ },
+ .callback = atkbd_setup_
+ .driver_data = atkbd_samsung_
+ },
+ {
.ident = "Fujitsu Amilo PA 1510",
.matches = {
DMI_
Changed in udev (Ubuntu): | |
assignee: | nobody → Martin Pitt (pitti) |
Pushed upstream: http:// git.kernel. org/?p= linux/hotplug/ udev.git; a=commit; h=20b48c3727eef 1f266cbfd6bf585 4b5c1419beb9
Thanks Andy!