From: johann d. <jd...@us...> - 2001-11-13 19:18:34
|
Update of /cvsroot/linuxconsole/ruby/linux/include/linux In directory usw-pr-cvs1:/tmp/cvs-serv30426 Modified Files: input.h Log Message: Attack and fade levels in ff_effect are now unsigned. Index: input.h =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/include/linux/input.h,v retrieving revision 1.54 retrieving revision 1.55 diff -u -d -r1.54 -r1.55 --- input.h 2001/10/27 14:44:17 1.54 +++ input.h 2001/11/13 19:18:31 1.55 @@ -522,9 +522,9 @@ struct ff_shape { __u16 attack_length; /* Duration of attack (ms) */ - __s16 attack_level; /* Level at beginning of attack */ + __u16 attack_level; /* Level at beginning of attack */ __u16 fade_length; /* Duration of fade (ms) */ - __s16 fade_level; /* Level at end of fade */ + __u16 fade_level; /* Level at end of fade */ }; /* FF_CONSTANT */ |