Home
last modified time | relevance | path

Searched refs:smibuf (Results 1 – 1 of 1) sorted by relevance

/Linux-v5.4/drivers/firmware/google/
Dgsmi.c150 struct gsmi_buf *smibuf; in gsmi_buf_alloc() local
152 smibuf = kzalloc(sizeof(*smibuf), GFP_KERNEL); in gsmi_buf_alloc()
153 if (!smibuf) { in gsmi_buf_alloc()
159 smibuf->start = dma_pool_alloc(gsmi_dev.dma_pool, GFP_KERNEL, in gsmi_buf_alloc()
160 &smibuf->handle); in gsmi_buf_alloc()
161 if (!smibuf->start) { in gsmi_buf_alloc()
163 kfree(smibuf); in gsmi_buf_alloc()
168 smibuf->length = GSMI_BUF_SIZE; in gsmi_buf_alloc()
169 smibuf->address = (u32)virt_to_phys(smibuf->start); in gsmi_buf_alloc()
171 return smibuf; in gsmi_buf_alloc()
[all …]