Bug 103075 - input layer interface change not reflected in header files
Summary: input layer interface change not reflected in header files
Status: RESOLVED INVALID
Alias: None
Product: SUSE LINUX 10.0
Classification: openSUSE
Component: Kernel (show other bugs)
Version: Beta 1
Hardware: Other All
: P5 - None : Major
Target Milestone: ---
Assignee: Vojtech Pavlik
QA Contact: E-mail List
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-08-09 15:51 UTC by Steffen Winterfeldt
Modified: 2005-08-26 09:13 UTC (History)
0 users

See Also:
Found By: Other
Services Priority:
Business Priority:
Blocker: ---
Marketing QA Status: ---
IT Deployment: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Steffen Winterfeldt 2005-08-09 15:51:13 UTC
A typical 3-button mouse now gives: 
 
B: KEY=70000 0 0 0 0  
 
which used to be 
 
B: KEY=70000 0 0 0 0 0 0 0 0  
 
but /usr/include/linux/input.h still gives 
#define BTN_MOUSE               0x110 
 
So, is the interface change intentional and the header outdated or 
is the interface change a bug?
Comment 1 Steffen Winterfeldt 2005-08-25 09:13:54 UTC
Vojtech, any news? 
Comment 2 Vojtech Pavlik 2005-08-25 18:51:06 UTC
It's a 64-bit machine, right? The numbers are longs (because bitops work on
longs), and thus there is fewer of them on 64-bit architectures.
Comment 3 Steffen Winterfeldt 2005-08-26 09:13:06 UTC
Indeed, you are right.