blob: 1aa6999de752503def399c8b04a4bacb0897cd1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* This file contains common data structure that cells use. */
struct trn_cell_extension_fields {
u8 field_type;
u8 field_len;
u8 field[field_len];
};
struct trn_cell_extension {
u8 num;
struct trn_cell_extension_fields fields[num];
};
|