- From: Bernd Porr <Bernd.Porr_at_cn.stir.ac.uk>
- Date: Wed, 16 Jul 2003 15:33:44 +0100
Received on 2003-07-16Z13:33:44
This bug relates to the neccesary conversions of the pointers:
int* <--> void*.
Actually in fops the options file has the type int.
int -> void*
...copy_from_user...
void* -> long int
should be int again...
Or we change the opts really to long everywhere.
/Bernd
--
http://www.cn.stir.ac.uk/~bp1
mailto:bp1_at_cn.stir.ac.uk
187c187 < it.options[COMEDI_DEVCONF_AUX_DATA] = (int)aux_data; --- > it.options[COMEDI_DEVCONF_AUX_DATA] = (unsigned long)aux_data;
Received on 2003-07-16Z13:33:44