X-Git-Url: http://rtime.felk.cvut.cz/gitweb/lincan.git/blobdiff_plain/f322df49b2f3aa1d8a5ac71a0fba7f8084c26380..a682f9de48bcce43fba6141fbdb4d451914e0bb4:/lincan/src/main.c diff --git a/lincan/src/main.c b/lincan/src/main.c index 7851340..9928c15 100644 --- a/lincan/src/main.c +++ b/lincan/src/main.c @@ -4,7 +4,7 @@ * Rewritten for new CAN queues by Pavel Pisa - OCERA team member * email:pisa@cmp.felk.cvut.cz * This software is released under the GPL-License. - * Version lincan-0.2 9 Jul 2003 + * Version lincan-0.3 17 Jun 2004 */ #ifndef EXPORT_SYMTAB @@ -63,8 +63,6 @@ #include "../include/can_iortl.h" #endif /*CAN_WITH_RTL*/ -#define EXPORT_SYMTAB - can_spinlock_t canuser_manipulation_lock; /* Module parameters, some must be supplied at module loading time */ @@ -130,7 +128,7 @@ MODULE_AUTHOR("Pavel Pisa , Arnaud Westenberg"); /* Global structures, used to describe the installed hardware. */ struct canhardware_t canhardware; struct canhardware_t *hardware_p=&canhardware; -struct chip_t *chips_p[MAX_TOT_CHIPS]; +struct canchip_t *chips_p[MAX_TOT_CHIPS]; struct msgobj_t *objects_p[MAX_TOT_MSGOBJS]; #ifdef CONFIG_DEVFS_FS #if (LINUX_VERSION_CODE <= KERNEL_VERSION(2,5,60)) @@ -179,7 +177,7 @@ int init_module(void) { int res=0,i=0, j; struct candevice_t *candev; - struct chip_t *chip; + struct canchip_t *chip; if (parse_mod_parms()) return -EINVAL;