Lines Matching defs:scratch
1043 void *scratch;
1051 scratch = kmemdup(buf, len, GFP_KERNEL | GFP_DMA);
1052 if (!scratch)
1055 ret = regmap_raw_write(dsp->regmap, reg, scratch,
1060 kfree(scratch);
1065 kfree(scratch);
1151 void *scratch;
1159 scratch = kmalloc(len, GFP_KERNEL | GFP_DMA);
1160 if (!scratch)
1163 ret = regmap_raw_read(dsp->regmap, reg, scratch, len);
1167 kfree(scratch);
1172 memcpy(buf, scratch, len);
1173 kfree(scratch);