[Bugme-new] [Bug 9107] New: hid-input.c lacks key codes for microsoft presenter mouse 8000 in presentation mode

bugme-daemon at bugzilla.kernel.org bugme-daemon at bugzilla.kernel.org
Mon Oct 1 09:59:34 PDT 2007


http://bugzilla.kernel.org/show_bug.cgi?id=9107

           Summary: hid-input.c lacks key codes for microsoft presenter
                    mouse 8000 in presentation mode
           Product: Drivers
           Version: 2.5
     KernelVersion: 2.6.20
          Platform: All
        OS/Version: Linux
              Tree: Mainline
            Status: NEW
          Severity: normal
          Priority: P1
         Component: Input Devices
        AssignedTo: drivers_input-devices at kernel-bugs.osdl.org
        ReportedBy: alan.campbell at desy.de


Most recent kernel where this bug did not occur: None
Distribution:ubuntu7.04
Hardware Environment:microsoft wireless notebook presenter mouse 8000
Software Environment:
Problem Description:
presentation mode buttons don't work due to missing mapping in hid-input.c

Problem Fix:
add following mapping in case HID_UP_MSVENDOR in hid-input.c


                case HID_UP_MSVENDOR:
                        switch (usage->hid & HID_USAGE) {
                                case 0x000: goto ignore;
                                case 0xfd08: map_key_clear(KEY_PAGEDOWN);      
break;
                                case 0xfd09: map_key_clear(KEY_PAGEUP);        
break;
                                case 0xfd0b: map_key_clear(KEY_PLAYPAUSE);     
break;
                                default:    goto ignore;
                        }
                        break;



Steps to reproduce:


-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.


More information about the Bugme-new mailing list