equal
deleted
inserted
replaced
31 #include "include/ecrt.h" |
31 #include "include/ecrt.h" |
32 |
32 |
33 /*****************************************************************************/ |
33 /*****************************************************************************/ |
34 |
34 |
35 struct ec_voe_handler { |
35 struct ec_voe_handler { |
|
36 ec_voe_handler_t *next; |
36 ec_slave_config_t *config; |
37 ec_slave_config_t *config; |
37 unsigned int index; |
38 unsigned int index; |
38 size_t data_size; |
39 size_t data_size; |
39 size_t mem_size; |
40 size_t mem_size; |
40 uint8_t *data; |
41 uint8_t *data; |
41 }; |
42 }; |
42 |
43 |
43 /*****************************************************************************/ |
44 /*****************************************************************************/ |
|
45 |
|
46 void ec_voe_handler_clear(ec_voe_handler_t *); |
|
47 |
|
48 /*****************************************************************************/ |