Lines Matching defs:scratch
751 void *scratch;
759 scratch = kmemdup(buf, len, GFP_KERNEL | GFP_DMA);
760 if (!scratch)
763 ret = regmap_raw_write(dsp->regmap, reg, scratch,
768 kfree(scratch);
773 kfree(scratch);
826 void *scratch;
834 scratch = kmalloc(len, GFP_KERNEL | GFP_DMA);
835 if (!scratch)
838 ret = regmap_raw_read(dsp->regmap, reg, scratch, len);
842 kfree(scratch);
847 memcpy(buf, scratch, len);
848 kfree(scratch);