Searched refs:dest_ptr (Results 1 – 6 of 6) sorted by relevance
/linux-6.12.1/lib/ |
D | devres.c | 129 void __iomem *dest_ptr; in __devm_ioremap_resource() local 160 dest_ptr = __devm_ioremap(dev, res->start, size, type); in __devm_ioremap_resource() 161 if (!dest_ptr) { in __devm_ioremap_resource() 167 return dest_ptr; in __devm_ioremap_resource()
|
/linux-6.12.1/drivers/pci/ |
D | devres.c | 343 void __iomem *dest_ptr; in devm_pci_remap_cfg_resource() local 367 dest_ptr = devm_pci_remap_cfgspace(dev, res->start, size); in devm_pci_remap_cfg_resource() 368 if (!dest_ptr) { in devm_pci_remap_cfg_resource() 371 dest_ptr = IOMEM_ERR_PTR(-ENOMEM); in devm_pci_remap_cfg_resource() 374 return dest_ptr; in devm_pci_remap_cfg_resource()
|
/linux-6.12.1/drivers/net/ethernet/xilinx/ |
D | xilinx_emaclite.c | 200 static void xemaclite_aligned_write(const void *src_ptr, u32 *dest_ptr, in xemaclite_aligned_write() argument 208 to_u32_ptr = dest_ptr; in xemaclite_aligned_write() 258 static void xemaclite_aligned_read(u32 *src_ptr, u8 *dest_ptr, in xemaclite_aligned_read() argument 266 to_u16_ptr = (u16 *)dest_ptr; in xemaclite_aligned_read()
|
/linux-6.12.1/drivers/char/tpm/ |
D | tpm2-cmd.c | 305 u8 *dest_ptr = dest; in tpm2_get_random() local 354 memcpy(dest_ptr, out->buffer, recd); in tpm2_get_random() 356 dest_ptr += recd; in tpm2_get_random()
|
/linux-6.12.1/drivers/gpu/drm/imagination/ |
D | pvr_fw.c | 790 u8 *dest_ptr = pvr_fw_object_vmap(dest_obj); in pvr_copy_to_fw() local 792 if (IS_ERR(dest_ptr)) in pvr_copy_to_fw() 793 return PTR_ERR(dest_ptr); in pvr_copy_to_fw() 795 memcpy(dest_ptr, src_ptr, size); in pvr_copy_to_fw()
|
/linux-6.12.1/sound/core/ |
D | rawmidi.c | 1075 struct snd_rawmidi_framing_tstamp *dest_ptr; in receive_with_tstamp_framing() local 1101 dest_ptr = (struct snd_rawmidi_framing_tstamp *) (runtime->buffer + runtime->hw_ptr); in receive_with_tstamp_framing() 1102 *dest_ptr = frame; in receive_with_tstamp_framing()
|