Searched refs:attach (Results 1 - 25 of 231) sorted by relevance

12345678910

/drivers/base/
H A Ddma-buf.c196 * calls attach() of dma_buf_ops to allow device-specific attach functionality
197 * @dmabuf: [in] buffer to attach device to.
207 struct dma_buf_attachment *attach; local
213 attach = kzalloc(sizeof(struct dma_buf_attachment), GFP_KERNEL);
214 if (attach == NULL)
217 attach->dev = dev;
218 attach->dmabuf = dmabuf;
222 if (dmabuf->ops->attach) {
223 ret = dmabuf->ops->attach(dmabu
246 dma_buf_detach(struct dma_buf *dmabuf, struct dma_buf_attachment *attach) argument
272 dma_buf_map_attachment(struct dma_buf_attachment *attach, enum dma_data_direction direction) argument
297 dma_buf_unmap_attachment(struct dma_buf_attachment *attach, struct sg_table *sg_table, enum dma_data_direction direction) argument
[all...]
/drivers/scsi/pcmcia/
H A DKconfig16 Say Y here if you intend to attach this type of PCMCIA SCSI host
25 Say Y here if you intend to attach this type of PCMCIA SCSI host
35 If you intend to attach this type of PCMCIA SCSI host adapter to
68 Say Y here if you intend to attach this type of PCMCIA SCSI host
/drivers/gpu/drm/
H A Ddrm_prime.c233 struct dma_buf_attachment *attach; local
235 attach = obj->import_attach;
237 dma_buf_unmap_attachment(attach, sg, DMA_BIDIRECTIONAL);
238 dma_buf = attach->dmabuf;
239 dma_buf_detach(attach->dmabuf, attach);
/drivers/net/wireless/ath/ath5k/
H A DMakefile11 ath5k-y += attach.o
/drivers/staging/comedi/drivers/
H A Dcb_pcimdda.c182 * which functions to call to configure/deconfigure (attach/detach)
186 static int attach(struct comedi_device *dev, struct comedi_devconfig *it);
191 .attach = attach,
281 static int attach(struct comedi_device *dev, struct comedi_devconfig *it) function
H A Dpcl725.c29 .attach = pcl725_attach,
H A Dmpc8260cpm.c55 .attach = mpc8260cpm_attach,
H A Dpcmad.c85 .attach = pcmad_attach,
H A Drti802.c56 .attach = rti802_attach,
H A Dacl7225b.c45 .attach = acl7225b_attach,
H A Dadl_pci7230.c66 .attach = adl_pci7230_attach,
H A Dadl_pci7296.c71 .attach = adl_pci7296_attach,
83 printk(KERN_INFO "comedi%d: attach adl_pci7432\n", dev->minor);
H A Dadl_pci7432.c66 .attach = adl_pci7432_attach,
91 printk(KERN_INFO "comedi%d: attach adl_pci7432\n", dev->minor);
H A Daio_aio12_8.c223 .attach = aio_aio12_8_attach,
/drivers/usb/serial/
H A Dio_tables.h117 .attach = edge_startup,
146 .attach = edge_startup,
175 .attach = edge_startup,
204 .attach = edge_startup,
H A Dempeg.c71 .attach = empeg_startup,
/drivers/net/wireless/prism54/
H A Doid_mgt.c332 struct obj_attachment *attach = data; local
333 attach->id = le16_to_cpu(attach->id);
334 attach->size = le16_to_cpu(attach->size);
401 struct obj_attachment *attach = data; local
402 attach->id = cpu_to_le16(attach->id);
403 attach->size = cpu_to_le16(attach
861 struct obj_attachment *attach = r->ptr; local
[all...]
/drivers/net/wan/
H A Dhdlc_raw.c76 result = hdlc->attach(dev, new_settings.encoding,
H A Dhdlc_raw_eth.c91 result = hdlc->attach(dev, new_settings.encoding,
H A Dhdlc_x25.c209 result=hdlc->attach(dev, ENCODING_NRZ,PARITY_CRC16_PR1_CCITT);
/drivers/scsi/bfa/
H A Dbfa_modules.h100 void (*attach) (struct bfa_s *bfa, void *bfad, member in struct:bfa_module_s
/drivers/pcmcia/
H A DKconfig9 Say Y here if you want to attach PCMCIA- or PC-cards to your Linux
/drivers/media/video/
H A Dv4l2-int-device.c52 /* Slave wants to attach to master? */
62 if (m->u.master->attach(s)) {
/drivers/net/wireless/bcmdhd/include/
H A Dbcmsdh.h66 /* Detach - freeup resources allocated in attach */
115 * addr: backplane address (i.e. >= regsva from attach)
130 * addr: backplane address (i.e. >= regsva from attach)
201 /* attach to device */
202 void *(*attach)(uint16 vend_id, uint16 dev_id, uint16 bus, uint16 slot, member in struct:__anon3309
/drivers/pps/clients/
H A Dpps_parport.c212 .attach = parport_attach,

Completed in 315 milliseconds

12345678910