master/module.c
changeset 79 319a97c1f0f9
parent 78 3d74183d6c6b
child 84 b4ae98855cea
equal deleted inserted replaced
78:3d74183d6c6b 79:319a97c1f0f9
    30 int __init ec_init_module(void);
    30 int __init ec_init_module(void);
    31 void __exit ec_cleanup_module(void);
    31 void __exit ec_cleanup_module(void);
    32 
    32 
    33 /*****************************************************************************/
    33 /*****************************************************************************/
    34 
    34 
    35 #define LIT(X) #X
    35 #define EC_LIT(X) #X
    36 #define STR(X) LIT(X)
    36 #define EC_STR(X) EC_LIT(X)
    37 
    37 
    38 #define COMPILE_INFO "Revision " STR(EC_REV) \
    38 #define COMPILE_INFO "Revision " EC_STR(EC_REV) \
    39                      ", compiled by " STR(EC_USER) \
    39                      ", compiled by " EC_STR(EC_USER) \
    40                      " at " STR(EC_DATE)
    40                      " at " EC_STR(EC_DATE)
    41 
    41 
    42 /*****************************************************************************/
    42 /*****************************************************************************/
    43 
    43 
    44 int ec_master_count = 1;
    44 int ec_master_count = 1;
    45 ec_master_t *ec_masters = NULL;
    45 ec_master_t *ec_masters = NULL;