Searched refs:smibuf (Results 1 – 1 of 1) sorted by relevance
151 struct gsmi_buf *smibuf; in gsmi_buf_alloc() local153 smibuf = kzalloc(sizeof(*smibuf), GFP_KERNEL); in gsmi_buf_alloc()154 if (!smibuf) { in gsmi_buf_alloc()160 smibuf->start = dma_pool_alloc(gsmi_dev.dma_pool, GFP_KERNEL, in gsmi_buf_alloc()161 &smibuf->handle); in gsmi_buf_alloc()162 if (!smibuf->start) { in gsmi_buf_alloc()164 kfree(smibuf); in gsmi_buf_alloc()169 smibuf->length = GSMI_BUF_SIZE; in gsmi_buf_alloc()170 smibuf->address = (u32)virt_to_phys(smibuf->start); in gsmi_buf_alloc()172 return smibuf; in gsmi_buf_alloc()[all …]