drivers/ec_module.h
changeset 39 6965c23a6826
parent 33 f4171b8aadf8
child 52 c0405659a74a
equal deleted inserted replaced
38:3213cbbd58b7 39:6965c23a6826
    14  *  D-45356 Essen
    14  *  D-45356 Essen
    15  *  Tel.: +49 201/61 99 31
    15  *  Tel.: +49 201/61 99 31
    16  *  Fax.: +49 201/61 98 36
    16  *  Fax.: +49 201/61 98 36
    17  *  E-mail: sp@igh-essen.com
    17  *  E-mail: sp@igh-essen.com
    18  *
    18  *
    19  ******************************************************************************/
    19  *****************************************************************************/
    20 
    20 
    21 #include <linux/module.h>
    21 #include <linux/module.h>
    22 #include <linux/kernel.h>
    22 #include <linux/kernel.h>
    23 #include <linux/init.h>
    23 #include <linux/init.h>
    24 
    24 
    25 #include "ec_master.h"
    25 #include "ec_master.h"
    26 
    26 
    27 /******************************************************************************/
    27 /*****************************************************************************/
    28 
    28 
    29 int __init ecat_init_module(void);
    29 int __init ecat_init_module(void);
    30 void __exit ecat_cleanup_module(void);
    30 void __exit ecat_cleanup_module(void);
    31 
    31 
    32 // Registration of devices
    32 // Registration of devices
    34 void EtherCAT_unregister_device(int, EtherCAT_device_t *);
    34 void EtherCAT_unregister_device(int, EtherCAT_device_t *);
    35 
    35 
    36 EtherCAT_master_t *EtherCAT_request(int);
    36 EtherCAT_master_t *EtherCAT_request(int);
    37 void EtherCAT_release(EtherCAT_master_t *);
    37 void EtherCAT_release(EtherCAT_master_t *);
    38 
    38 
    39 /******************************************************************************/
    39 /*****************************************************************************/