]> rtime.felk.cvut.cz Git - lincan.git/blob - embedded/app/usbcan/can/ul_usb1.h
Merge branch 'master' into can-usb1
[lincan.git] / embedded / app / usbcan / can / ul_usb1.h
1 #ifndef UL_USB1_H
2 #define UL_USB1_H
3
4 /* ul_usb1.h
5  * Header file for the Linux CAN-bus driver.
6  * Written by Arnaud Westenberg email:arnaud@wanadoo.nl
7  * Rewritten for new CAN queues by Pavel Pisa - OCERA team member
8  * email:pisa@cmp.felk.cvut.cz
9  * This software is released under the GPL-License.
10  * Version lincan-0.3  17 Jun 2004
11  */
12
13 struct ul_usb1_chip_data
14 {
15         int flags;
16 };
17
18 #define UL_USB1_CHIP_MASK_SET (1<<0)
19 #define UL_USB1_CHIP_BAUD_SET (1<<1)
20
21 int ul_usb1_init(void);
22 void ul_usb1_exit(void);
23
24 extern int ul_usb1_register(struct hwspecops_t *hwspecops);
25
26 #endif /* UL_USB1_H */