Lines Matching refs:this
231 struct sdio_func_tuple *this, **prev; in sdio_read_cis() local
284 this = kmalloc(sizeof(*this) + tpl_link, GFP_KERNEL); in sdio_read_cis()
285 if (!this) in sdio_read_cis()
290 ptr + i, 0, &this->data[i]); in sdio_read_cis()
295 kfree(this); in sdio_read_cis()
302 tpl_code, this->data, tpl_link); in sdio_read_cis()
308 this->next = NULL; in sdio_read_cis()
309 this->code = tpl_code; in sdio_read_cis()
310 this->size = tpl_link; in sdio_read_cis()
311 *prev = this; in sdio_read_cis()
312 prev = &this->next; in sdio_read_cis()
330 kfree(this); in sdio_read_cis()