do you think we could add a new KEY_KPPOUND to include/linux/input.h ?
I just had a quick look in latest git, but could not find anything..
do you want me to define a key and make a patch for you?
BTW, for now I have defined a work-around in my cm109 driver:
#ifndef KEY_KPPOUND
#define KEY_KPPOUND (KEY_LEFTSHIFT | KEY_3 << 8)
#endif
that hack was "copied" from drivers/input/misc/yealink.c
case 0x32: return KEY_LEFTSHIFT |
KEY_3 << 8; /* # */
/alfred
<snip>
--