From: Vojtech P. <vo...@us...> - 2002-01-03 08:55:09
|
Update of /cvsroot/linuxconsole/ruby/linux/include/linux In directory usw-pr-cvs1:/tmp/cvs-serv394/include/linux Modified Files: gameport.h Log Message: Fix a stupid bug in the gameport code. Caused crashes with pcigame.c. Index: gameport.h =================================================================== RCS file: /cvsroot/linuxconsole/ruby/linux/include/linux/gameport.h,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- gameport.h 2001/10/17 17:00:14 1.19 +++ gameport.h 2002/01/03 08:55:05 1.20 @@ -34,7 +34,8 @@ struct gameport { - void *private; + void *private; /* Private pointer for joystick drivers */ + void *driver; /* Private pointer for gameport drivers */ char *name; char *phys; |