capmode.c (976e3645923bdd2fe7893aae33fd7a21098bfb28) capmode.c (538b22e74287864014b3be7481042fb904a0cc0d)
1/*
2 * Linux ARCnet driver - "cap mode" packet encapsulation.
3 * It adds sequence numbers to packets for communicating between a user space
4 * application and the driver. After a transmit it sends a packet with protocol
5 * byte 0 back up to the userspace containing the sequence number of the packet
6 * plus the transmit-status on the ArcNet.
7 *
8 * Written 2002-4 by Esben Nielsen, Vestas Wind Systems A/S

--- 251 unchanged lines hidden (view full) ---

260
261static void __exit capmode_module_exit(void)
262{
263 arcnet_unregister_proto(&capmode_proto);
264}
265module_init(capmode_module_init);
266module_exit(capmode_module_exit);
267
1/*
2 * Linux ARCnet driver - "cap mode" packet encapsulation.
3 * It adds sequence numbers to packets for communicating between a user space
4 * application and the driver. After a transmit it sends a packet with protocol
5 * byte 0 back up to the userspace containing the sequence number of the packet
6 * plus the transmit-status on the ArcNet.
7 *
8 * Written 2002-4 by Esben Nielsen, Vestas Wind Systems A/S

--- 251 unchanged lines hidden (view full) ---

260
261static void __exit capmode_module_exit(void)
262{
263 arcnet_unregister_proto(&capmode_proto);
264}
265module_init(capmode_module_init);
266module_exit(capmode_module_exit);
267
268MODULE_DESCRIPTION("ARCnet CAP mode packet interface module");
268MODULE_LICENSE("GPL");
269MODULE_LICENSE("GPL");