Apply this patch to 64net2/server/linux/fastpc.c to make it
compile for 2.4.x Kernels
226c226
< Major = module_register_chrdev(0, DEVICE_NAME,
&Fops);
---
> Major = register_chrdev(0, DEVICE_NAME, &Fops);
251c251
< if ((ret = module_unregister_chrdev(Major,
DEVICE_NAME)) < 0)
---
> if ((ret = unregister_chrdev(Major, DEVICE_NAME)) < 0)
254a255,257
>
>
> MODULE_LICENSE("GPL");