Lines Matching defs:this
49 struct cfrfml *this = kzalloc(sizeof(struct cfrfml), GFP_ATOMIC);
51 if (!this)
54 cfsrvl_init(&this->serv, channel_id, dev_info, false);
55 this->serv.release = cfrfml_release;
56 this->serv.layer.receive = cfrfml_receive;
57 this->serv.layer.transmit = cfrfml_transmit;
63 this->fragment_size = tmp;
64 spin_lock_init(&this->sync);
65 snprintf(this->serv.layer.name, CAIF_LAYER_NAME_SZ,
68 return &this->serv.layer;