mirror of
https://github.com/kanjitalk755/macemu.git
synced 2024-12-19 09:31:26 +00:00
cleaned up a little
This commit is contained in:
parent
d1ea113beb
commit
3c0d6f6e43
@ -3,7 +3,7 @@
|
||||
## System specific configuration
|
||||
CC = cc
|
||||
CPPFLAGS = -I. -I/usr/src/linux/include
|
||||
CFLAGS = -O2 -Wall -fno-builtin -D__KERNEL__ -DMODULE
|
||||
CFLAGS = -O2 -Wall -D__KERNEL__ -DMODULE -DLINUX
|
||||
ASFLAGS =
|
||||
LDFLAGS =
|
||||
LIBS =
|
||||
|
@ -18,9 +18,18 @@
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/version.h>
|
||||
|
||||
#ifdef CONFIG_MODVERSIONS
|
||||
#define MODVERSIONS
|
||||
#include <linux/modversions.h>
|
||||
#endif
|
||||
|
||||
#ifdef CONFIG_SMP
|
||||
#define __SMP__
|
||||
#endif
|
||||
|
||||
#include <linux/miscdevice.h>
|
||||
#include <linux/netdevice.h>
|
||||
#include <linux/etherdevice.h>
|
||||
@ -36,6 +45,9 @@
|
||||
#include <net/ip.h>
|
||||
#include <asm/uaccess.h>
|
||||
|
||||
MODULE_AUTHOR("Christian Bauer");
|
||||
MODULE_DESCRIPTION("Pseudo ethernet device for emulators");
|
||||
|
||||
/* Compatibility glue */
|
||||
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,4,0)
|
||||
#define LINUX_24
|
||||
@ -138,14 +150,11 @@ int init_module(void)
|
||||
* Deinitialize module
|
||||
*/
|
||||
|
||||
int cleanup_module(void)
|
||||
void cleanup_module(void)
|
||||
{
|
||||
int ret;
|
||||
|
||||
/* Unregister driver */
|
||||
ret = misc_deregister(&sheep_net_device);
|
||||
misc_deregister(&sheep_net_device);
|
||||
D(bug("Sheep net driver removed\n"));
|
||||
return ret;
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user