thinkpad-acpi: drop HKEY event 0x5010
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / include / linux / can / core.h
blob25085cbadcfcded25b013923664c02c28508ebe7
1 /*
2 * linux/can/core.h
4 * Protoypes and definitions for CAN protocol modules using the PF_CAN core
6 * Authors: Oliver Hartkopp <oliver.hartkopp@volkswagen.de>
7 * Urs Thuermann <urs.thuermann@volkswagen.de>
8 * Copyright (c) 2002-2007 Volkswagen Group Electronic Research
9 * All rights reserved.
11 * Send feedback to <socketcan-users@lists.berlios.de>
15 #ifndef CAN_CORE_H
16 #define CAN_CORE_H
18 #include <linux/can.h>
19 #include <linux/skbuff.h>
20 #include <linux/netdevice.h>
22 #define CAN_VERSION "20090105"
24 /* increment this number each time you change some user-space interface */
25 #define CAN_ABI_VERSION "8"
27 #define CAN_VERSION_STRING "rev " CAN_VERSION " abi " CAN_ABI_VERSION
29 #define DNAME(dev) ((dev) ? (dev)->name : "any")
31 /**
32 * struct can_proto - CAN protocol structure
33 * @type: type argument in socket() syscall, e.g. SOCK_DGRAM.
34 * @protocol: protocol number in socket() syscall.
35 * @capability: capability needed to open the socket, or -1 for no restriction.
36 * @ops: pointer to struct proto_ops for sock->ops.
37 * @prot: pointer to struct proto structure.
39 struct can_proto {
40 int type;
41 int protocol;
42 int capability;
43 struct proto_ops *ops;
44 struct proto *prot;
47 /* function prototypes for the CAN networklayer core (af_can.c) */
49 extern int can_proto_register(struct can_proto *cp);
50 extern void can_proto_unregister(struct can_proto *cp);
52 extern int can_rx_register(struct net_device *dev, canid_t can_id,
53 canid_t mask,
54 void (*func)(struct sk_buff *, void *),
55 void *data, char *ident);
57 extern void can_rx_unregister(struct net_device *dev, canid_t can_id,
58 canid_t mask,
59 void (*func)(struct sk_buff *, void *),
60 void *data);
62 extern int can_send(struct sk_buff *skb, int loop);
64 #endif /* CAN_CORE_H */