Home
last modified time | relevance | path

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

/linux/sound/usb/line6/
H A Ddriver.c610 char *data_copy; in line6_hwdep_write() local
617 data_copy = memdup_user(data, count); in line6_hwdep_write()
618 if (IS_ERR(data_copy)) in line6_hwdep_write()
619 return PTR_ERR(data_copy); in line6_hwdep_write()
621 rv = line6_send_raw_message(line6, data_copy, count); in line6_hwdep_write()
623 kfree(data_copy); in line6_hwdep_write()
/linux/drivers/gpu/nova-core/
H A Dvbios.rs745 let mut data_copy = KVec::new(); in new() localVariable
746 data_copy.extend_from_slice(data, GFP_KERNEL)?; in new()
753 data: data_copy, in new()