]> rtime.felk.cvut.cz Git - can-eth-gw.git/blobdiff - kernel/canethgw.h
Remove obsolete files
[can-eth-gw.git] / kernel / canethgw.h
diff --git a/kernel/canethgw.h b/kernel/canethgw.h
deleted file mode 100644 (file)
index ab1b6c1..0000000
+++ /dev/null
@@ -1,31 +0,0 @@
-#ifndef CANETHGW_H
-#define CANETHGW_H
-
-#include <linux/types.h>
-
-struct cegw_ioctl
-{
-       __u32 can_sock;
-       __u32 udp_sock;
-       __u32 udp_dstcnt;
-       __u32 udp_addrlen;
-       __u8 udp_dst[0];
-};
-
-#ifdef __KERNEL__
-struct cegw_job
-{
-       struct kref refcount;
-       struct socket* can_sock;
-       struct socket* udp_sock;
-       u32  udp_dstcnt;
-       u32  udp_addrlen;
-       u8   udp_dst[0];
-};
-#endif
-
-#define CEGW_IOCTL_BASE 'c'
-#define CEGW_IOCTL_START _IOW(CEGW_IOCTL_BASE, 0, struct cegw_ioctl)
-
-#endif /* CANETHGW_H */
-