Attention is currently required from: dexter, laforge, neels.
1 comment:
File src/codec/ecu_fr.c:
Patch Set #5, Line 315: struct fr_ecu_state *fr = (struct fr_ecu_state *) st;
Here and in the function below is where you need container_of:
static inline struct fr_ecu_state *_osmo_ecu_state_get_fr(struct osmo_ecu_state *st) {
return (struct fr_ecu_state *)container_of(st, struct fr_ecu_state, ecu_state);
}static int ecu_fr_frame_out(struct osmo_ecu_state *st, uint8_t *frame_out)
{
struct fr_ecu_state *fr = _osmo_ecu_state_get_fr(st);
....
To view, visit change 35212. To unsubscribe, or for help writing mail filters, visit settings.