]> Pileus Git - ~andy/linux/blobdiff - drivers/hid/hid-magicmouse.c
[media] mt312: convert set_fontend to use DVBv5 parameters
[~andy/linux] / drivers / hid / hid-magicmouse.c
index f0fbd7bd239e389e11e21d55ef108b5e8066984d..2ab71758e2e22940e0c53c1873a32a03152a9808 100644 (file)
@@ -405,6 +405,13 @@ static void magicmouse_setup_input(struct input_dev *input, struct hid_device *h
                        __set_bit(REL_HWHEEL, input->relbit);
                }
        } else { /* USB_DEVICE_ID_APPLE_MAGICTRACKPAD */
+               /* input->keybit is initialized with incorrect button info
+                * for Magic Trackpad. There really is only one physical
+                * button (BTN_LEFT == BTN_MOUSE). Make sure we don't
+                * advertise buttons that don't exist...
+                */
+               __clear_bit(BTN_RIGHT, input->keybit);
+               __clear_bit(BTN_MIDDLE, input->keybit);
                __set_bit(BTN_MOUSE, input->keybit);
                __set_bit(BTN_TOOL_FINGER, input->keybit);
                __set_bit(BTN_TOOL_DOUBLETAP, input->keybit);