Comment 11 for bug 541453

Revision history for this message
miaou86 (ced56) wrote :

I try the kernel 2.6.32-19.28, the driver for my touch screen does not work.

It is compiled but not used. For the hid-quanta driver works.

in /include/linux/hid.h, change the end of the macro IS_INPUT_APPLICATION to (a >= 0xd0002 && a <= 0xd0006).

replace the line:
#define IS_INPUT_APPLICATION(a) (((a >= 0x00010000) && (a <= 0x00010008)) || (a == 0x00010080) || (a == 0x000c0001) || (a >= 0x000d0002))
by :
#define IS_INPUT_APPLICATION(a) (((a >= 0x00010000) && (a <= 0x00010008)) || (a == 0x00010080) || (a == 0x000c0001) || ((a >= 0x000d0002 && a <= 0x000d0006)))

source : http://www.lii-enac.fr/en/projects/shareit/linux-howto.html
ps: translated by google