Supply the moduledata handle rather than the event dispatcher function.
This should explain the panic on boot problem that's been discussed in
-current at the moment.  Both machines had GNU_MATH_EMULATE.
This commit is contained in:
Peter Wemm 1998-10-18 04:36:58 +00:00
parent 9471b48afe
commit a19bc2b0fb
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=40501

View File

@ -55,7 +55,7 @@
*
* W. Metzenthen June 1994.
*
* $Id: fpu_entry.c,v 1.14 1998/08/16 01:21:48 bde Exp $
* $Id: fpu_entry.c,v 1.15 1998/10/16 03:54:59 peter Exp $
*
*/
@ -544,6 +544,6 @@ moduledata_t gnufpumod = {
gnufpu_modevent,
0
};
DECLARE_MODULE(gnufpu, gnufpu_modevent, SI_SUB_PSEUDO, SI_ORDER_ANY);
DECLARE_MODULE(gnufpu, gnufpumod, SI_SUB_PSEUDO, SI_ORDER_ANY);
#endif /* LKM */