> Folks
> 
Hello,

> Hope you can help.
> 
I think I can.

> wacom.c:324: syntax error before ')' token
> wacom.c:325: syntax error before ')' token
> 
Take a look at the mentioned lines in the src/2.4/
wacom.c file : there are indeed too many 
parentheses.
Replace :
input_report_abs(dev, ABS_X, data[2] << 8 | data[1
]));
input_report_abs(dev, ABS_Y, data[4] << 8 | data[3
]));
at lines 324 and 325 with : 
input_report_abs(dev, ABS_X, data[2] << 8 | data[1
]);
input_report_abs(dev, ABS_Y, data[4] << 8 | data[3
]);

i.e. remove the redundant right parentheses. It 
should compile more cleanly. 

But on a related note, I'm not sure that Ping has 
the time to maintain/test for all kernel versions, 
hence the compilation error. If possible, it might 
be better to upgrade to a more recent kernel (and, 
with time going, I bet it will get more and more 
difficult to compile an old kernel with a recent 
version of gcc). 


Accédez au courrier électronique de La Poste : www.laposte.net ; 
3615 LAPOSTENET (0,34 €/mn) ; tél : 08 92 68 13 50 (0,34€/mn)





_______________________________________________
Linuxwacom-discuss mailing list
Linuxwacom-discuss@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linuxwacom-discuss

Reply via email to