/linux-4.4.14/arch/powerpc/platforms/ps3/ |
D | system-bus.c | 346 static int ps3_system_bus_match(struct device *_dev, in ps3_system_bus_match() argument 351 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev); in ps3_system_bus_match() 373 static int ps3_system_bus_probe(struct device *_dev) in ps3_system_bus_probe() argument 376 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev); in ps3_system_bus_probe() 380 dev_dbg(_dev, "%s:%d\n", __func__, __LINE__); in ps3_system_bus_probe() 395 static int ps3_system_bus_remove(struct device *_dev) in ps3_system_bus_remove() argument 398 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev); in ps3_system_bus_remove() 402 dev_dbg(_dev, "%s:%d\n", __func__, __LINE__); in ps3_system_bus_remove() 417 static void ps3_system_bus_shutdown(struct device *_dev) in ps3_system_bus_shutdown() argument 419 struct ps3_system_bus_device *dev = ps3_dev_to_system_bus_dev(_dev); in ps3_system_bus_shutdown() [all …]
|
/linux-4.4.14/drivers/gpu/drm/gma500/ |
D | power.c | 188 int gma_power_suspend(struct device *_dev) in gma_power_suspend() argument 190 struct pci_dev *pdev = container_of(_dev, struct pci_dev, dev); in gma_power_suspend() 215 int gma_power_resume(struct device *_dev) in gma_power_resume() argument 217 struct pci_dev *pdev = container_of(_dev, struct pci_dev, dev); in gma_power_resume() 319 int gma_power_thaw(struct device *_dev) in gma_power_thaw() argument 321 return gma_power_resume(_dev); in gma_power_thaw() 324 int gma_power_freeze(struct device *_dev) in gma_power_freeze() argument 326 return gma_power_suspend(_dev); in gma_power_freeze() 329 int gma_power_restore(struct device *_dev) in gma_power_restore() argument 331 return gma_power_resume(_dev); in gma_power_restore()
|
D | power.h | 46 int gma_power_restore(struct device *_dev);
|
/linux-4.4.14/arch/mips/include/asm/ |
D | gio_device.h | 51 #define gio_get_drvdata(_dev) dev_get_drvdata(&(_dev)->dev) argument 52 #define gio_set_drvdata(_dev, data) dev_set_drvdata(&(_dev)->dev, (data)) argument
|
/linux-4.4.14/drivers/xen/xenbus/ |
D | xenbus_probe.h | 59 extern int xenbus_match(struct device *_dev, struct device_driver *_drv); 60 extern int xenbus_dev_probe(struct device *_dev); 61 extern int xenbus_dev_remove(struct device *_dev); 73 extern void xenbus_dev_shutdown(struct device *_dev);
|
D | xenbus_probe.c | 93 int xenbus_match(struct device *_dev, struct device_driver *_drv) in xenbus_match() argument 100 return match_device(drv->ids, to_xenbus_device(_dev)) != NULL; in xenbus_match() 212 int xenbus_dev_probe(struct device *_dev) in xenbus_dev_probe() argument 214 struct xenbus_device *dev = to_xenbus_device(_dev); in xenbus_dev_probe() 215 struct xenbus_driver *drv = to_xenbus_driver(_dev->driver); in xenbus_dev_probe() 258 int xenbus_dev_remove(struct device *_dev) in xenbus_dev_remove() argument 260 struct xenbus_device *dev = to_xenbus_device(_dev); in xenbus_dev_remove() 261 struct xenbus_driver *drv = to_xenbus_driver(_dev->driver); in xenbus_dev_remove() 277 void xenbus_dev_shutdown(struct device *_dev) in xenbus_dev_shutdown() argument 279 struct xenbus_device *dev = to_xenbus_device(_dev); in xenbus_dev_shutdown()
|
D | xenbus_probe_frontend.c | 78 static int xenbus_uevent_frontend(struct device *_dev, in xenbus_uevent_frontend() argument 81 struct xenbus_device *dev = to_xenbus_device(_dev); in xenbus_uevent_frontend()
|
/linux-4.4.14/include/linux/wimax/ |
D | debug.h | 384 #define d_fnstart(l, _dev, f, a...) _d_printf(l, " FNSTART", _dev, f, ## a) argument 394 #define d_fnend(l, _dev, f, a...) _d_printf(l, " FNEND", _dev, f, ## a) argument 404 #define d_printf(l, _dev, f, a...) _d_printf(l, "", _dev, f, ## a) argument
|
/linux-4.4.14/sound/pci/emu10k1/ |
D | emu10k1_synth.c | 32 static int snd_emu10k1_synth_probe(struct device *_dev) in snd_emu10k1_synth_probe() argument 34 struct snd_seq_device *dev = to_seq_dev(_dev); in snd_emu10k1_synth_probe() 83 static int snd_emu10k1_synth_remove(struct device *_dev) in snd_emu10k1_synth_remove() argument 85 struct snd_seq_device *dev = to_seq_dev(_dev); in snd_emu10k1_synth_remove()
|
/linux-4.4.14/sound/isa/sb/ |
D | emu8000_synth.c | 37 static int snd_emu8000_probe(struct device *_dev) in snd_emu8000_probe() argument 39 struct snd_seq_device *dev = to_seq_dev(_dev); in snd_emu8000_probe() 97 static int snd_emu8000_remove(struct device *_dev) in snd_emu8000_remove() argument 99 struct snd_seq_device *dev = to_seq_dev(_dev); in snd_emu8000_remove()
|
/linux-4.4.14/include/scsi/ |
D | scsi_transport_iscsi.h | 215 #define iscsi_dev_to_conn(_dev) \ argument 216 container_of(_dev, struct iscsi_cls_conn, dev) 261 #define iscsi_dev_to_session(_dev) \ argument 262 container_of(_dev, struct iscsi_cls_session, dev) 302 #define iscsi_dev_to_iface(_dev) \ argument 303 container_of(_dev, struct iscsi_iface, dev) 346 #define iscsi_dev_to_flash_conn(_dev) \ argument 347 container_of(_dev, struct iscsi_bus_flash_conn, dev) 408 #define iscsi_dev_to_flash_session(_dev) \ argument 409 container_of(_dev, struct iscsi_bus_flash_session, dev)
|
/linux-4.4.14/drivers/parport/ |
D | parport_ax88796.c | 274 struct device *_dev = &pdev->dev; in parport_ax88796_probe() local 285 dev_err(_dev, "no memory for private data\n"); in parport_ax88796_probe() 291 dev_err(_dev, "no MEM specified\n"); in parport_ax88796_probe() 301 dev_err(_dev, "cannot reserve memory\n"); in parport_ax88796_probe() 308 dev_err(_dev, "cannot ioremap region\n"); in parport_ax88796_probe() 322 dev_err(_dev, "failed to register parallel port\n"); in parport_ax88796_probe() 329 dd->dev = _dev; in parport_ax88796_probe() 351 dev_info(_dev, "attached parallel port driver\n"); in parport_ax88796_probe()
|
/linux-4.4.14/drivers/base/ |
D | platform.c | 505 static int platform_drv_probe(struct device *_dev) in platform_drv_probe() argument 507 struct platform_driver *drv = to_platform_driver(_dev->driver); in platform_drv_probe() 508 struct platform_device *dev = to_platform_device(_dev); in platform_drv_probe() 511 ret = of_clk_set_defaults(_dev->of_node, false); in platform_drv_probe() 515 ret = dev_pm_domain_attach(_dev, true); in platform_drv_probe() 520 dev_pm_domain_detach(_dev, true); in platform_drv_probe() 528 dev_warn(_dev, "probe deferral not supported\n"); in platform_drv_probe() 535 static int platform_drv_probe_fail(struct device *_dev) in platform_drv_probe_fail() argument 540 static int platform_drv_remove(struct device *_dev) in platform_drv_remove() argument 542 struct platform_driver *drv = to_platform_driver(_dev->driver); in platform_drv_remove() [all …]
|
D | dd.c | 517 static void __device_attach_async_helper(void *_dev, async_cookie_t cookie) in __device_attach_async_helper() argument 519 struct device *dev = _dev; in __device_attach_async_helper()
|
/linux-4.4.14/sound/drivers/opl4/ |
D | opl4_seq.c | 127 static int snd_opl4_seq_probe(struct device *_dev) in snd_opl4_seq_probe() argument 129 struct snd_seq_device *dev = to_seq_dev(_dev); in snd_opl4_seq_probe() 184 static int snd_opl4_seq_remove(struct device *_dev) in snd_opl4_seq_remove() argument 186 struct snd_seq_device *dev = to_seq_dev(_dev); in snd_opl4_seq_remove()
|
/linux-4.4.14/arch/powerpc/include/asm/ |
D | ps3.h | 409 struct device *_dev) in ps3_dev_to_system_bus_dev() argument 411 return container_of(_dev, struct ps3_system_bus_device, core); in ps3_dev_to_system_bus_dev() 414 ps3_system_bus_dev_to_system_bus_drv(struct ps3_system_bus_device *_dev) in ps3_system_bus_dev_to_system_bus_drv() argument 416 BUG_ON(!_dev); in ps3_system_bus_dev_to_system_bus_drv() 417 BUG_ON(!_dev->core.driver); in ps3_system_bus_dev_to_system_bus_drv() 418 return ps3_drv_to_system_bus_drv(_dev->core.driver); in ps3_system_bus_dev_to_system_bus_drv()
|
/linux-4.4.14/include/sound/ |
D | seq_device.h | 41 #define to_seq_dev(_dev) \ argument 42 container_of(_dev, struct snd_seq_device, dev)
|
D | hdaudio.h | 104 #define dev_to_hdac_dev(_dev) container_of(_dev, struct hdac_device, dev) argument
|
/linux-4.4.14/net/l3mdev/ |
D | l3mdev.c | 61 struct net_device *_dev = (struct net_device *) dev; in l3mdev_fib_table_rcu() local 64 master = netdev_master_upper_dev_get_rcu(_dev); in l3mdev_fib_table_rcu()
|
/linux-4.4.14/include/linux/ |
D | mic_bus.h | 101 static inline struct mbus_device *dev_to_mbus(struct device *_dev) in dev_to_mbus() argument 103 return container_of(_dev, struct mbus_device, dev); in dev_to_mbus()
|
D | virtio.h | 111 static inline struct virtio_device *dev_to_virtio(struct device *_dev) in dev_to_virtio() argument 113 return container_of(_dev, struct virtio_device, dev); in dev_to_virtio()
|
/linux-4.4.14/drivers/ps3/ |
D | vuart.h | 61 ps3_system_bus_dev_to_vuart_drv(struct ps3_system_bus_device *_dev) in ps3_system_bus_dev_to_vuart_drv() argument 64 ps3_system_bus_dev_to_system_bus_drv(_dev); in ps3_system_bus_dev_to_vuart_drv()
|
/linux-4.4.14/sound/drivers/opl3/ |
D | opl3_seq.c | 219 static int snd_opl3_seq_probe(struct device *_dev) in snd_opl3_seq_probe() argument 221 struct snd_seq_device *dev = to_seq_dev(_dev); in snd_opl3_seq_probe() 261 static int snd_opl3_seq_remove(struct device *_dev) in snd_opl3_seq_remove() argument 263 struct snd_seq_device *dev = to_seq_dev(_dev); in snd_opl3_seq_remove()
|
/linux-4.4.14/drivers/block/ |
D | ps3disk.c | 403 static int ps3disk_probe(struct ps3_system_bus_device *_dev) in ps3disk_probe() argument 405 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core); in ps3disk_probe() 437 ps3_system_bus_set_drvdata(_dev, priv); in ps3disk_probe() 513 ps3_system_bus_set_drvdata(_dev, NULL); in ps3disk_probe() 521 static int ps3disk_remove(struct ps3_system_bus_device *_dev) in ps3disk_remove() argument 523 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core); in ps3disk_remove() 538 ps3_system_bus_set_drvdata(_dev, NULL); in ps3disk_remove()
|
/linux-4.4.14/drivers/staging/fsl-mc/include/ |
D | mc.h | 161 #define to_fsl_mc_device(_dev) \ argument 162 container_of(_dev, struct fsl_mc_device, dev)
|
/linux-4.4.14/drivers/usb/core/ |
D | hub.h | 109 #define to_usb_port(_dev) \ argument 110 container_of(_dev, struct usb_port, dev)
|
D | endpoint.c | 23 #define to_ep_device(_dev) \ argument 24 container_of(_dev, struct ep_device, dev)
|
/linux-4.4.14/drivers/amba/ |
D | bus.c | 67 static ssize_t driver_override_show(struct device *_dev, in driver_override_show() argument 70 struct amba_device *dev = to_amba_device(_dev); in driver_override_show() 78 static ssize_t driver_override_store(struct device *_dev, in driver_override_store() argument 82 struct amba_device *dev = to_amba_device(_dev); in driver_override_store() 109 static ssize_t name##_show(struct device *_dev, \ 112 struct amba_device *dev = to_amba_device(_dev); \
|
/linux-4.4.14/drivers/scsi/ |
D | ps3rom.c | 357 static int ps3rom_probe(struct ps3_system_bus_device *_dev) in ps3rom_probe() argument 359 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core); in ps3rom_probe() 418 static int ps3rom_remove(struct ps3_system_bus_device *_dev) in ps3rom_remove() argument 420 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core); in ps3rom_remove()
|
D | scsi_transport_iscsi.c | 97 #define dev_to_iscsi_internal(_dev) \ argument 98 container_of(_dev, struct iscsi_internal, dev) 149 #define iscsi_dev_to_endpoint(_dev) \ argument 150 container_of(_dev, struct iscsi_endpoint, dev)
|
/linux-4.4.14/sound/pci/hda/ |
D | hda_codec.h | 292 #define dev_to_hda_codec(_dev) container_of(_dev, struct hda_codec, core.dev) argument 293 #define hda_codec_dev(_dev) (&(_dev)->core.dev) argument
|
/linux-4.4.14/drivers/nfc/ |
D | nfcsim.c | 22 #define DEV_ERR(_dev, fmt, args...) nfc_err(&_dev->nfc_dev->dev, \ argument 25 #define DEV_DBG(_dev, fmt, args...) dev_dbg(&_dev->nfc_dev->dev, \ argument
|
/linux-4.4.14/drivers/char/ |
D | ps3flash.c | 342 static int ps3flash_probe(struct ps3_system_bus_device *_dev) in ps3flash_probe() argument 344 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core); in ps3flash_probe() 418 static int ps3flash_remove(struct ps3_system_bus_device *_dev) in ps3flash_remove() argument 420 struct ps3_storage_device *dev = to_ps3_storage_device(&_dev->core); in ps3flash_remove()
|
/linux-4.4.14/sound/core/seq/ |
D | seq_midi.c | 276 snd_seq_midisynth_probe(struct device *_dev) in snd_seq_midisynth_probe() argument 278 struct snd_seq_device *dev = to_seq_dev(_dev); in snd_seq_midisynth_probe() 431 snd_seq_midisynth_remove(struct device *_dev) in snd_seq_midisynth_remove() argument 433 struct snd_seq_device *dev = to_seq_dev(_dev); in snd_seq_midisynth_remove()
|
/linux-4.4.14/drivers/misc/vmw_vmci/ |
D | vmci_guest.c | 399 static irqreturn_t vmci_interrupt(int irq, void *_dev) in vmci_interrupt() argument 401 struct vmci_guest_device *dev = _dev; in vmci_interrupt() 443 static irqreturn_t vmci_interrupt_bm(int irq, void *_dev) in vmci_interrupt_bm() argument 445 struct vmci_guest_device *dev = _dev; in vmci_interrupt_bm()
|
/linux-4.4.14/drivers/pcmcia/ |
D | socket_sysfs.c | 34 #define to_socket(_dev) container_of(_dev, struct pcmcia_socket, dev) argument
|
D | ti113x.h | 919 #define DEVID(_vend,_dev,_subvend,_subdev,mask,bits) { \ argument 921 .device = _dev, \
|
D | cistpl.c | 1472 #define to_socket(_dev) container_of(_dev, struct pcmcia_socket, dev) argument
|
/linux-4.4.14/drivers/i2c/busses/ |
D | i2c-cadence.c | 811 static int __maybe_unused cdns_i2c_suspend(struct device *_dev) in cdns_i2c_suspend() argument 813 struct platform_device *pdev = container_of(_dev, in cdns_i2c_suspend() 831 static int __maybe_unused cdns_i2c_resume(struct device *_dev) in cdns_i2c_resume() argument 833 struct platform_device *pdev = container_of(_dev, in cdns_i2c_resume() 840 dev_err(_dev, "Cannot enable clock.\n"); in cdns_i2c_resume()
|
D | i2c-brcmstb.c | 183 #define bsc_readl(_dev, _reg) \ argument 184 __bsc_readl(_dev->base + offsetof(struct bsc_regs, _reg)) 186 #define bsc_writel(_dev, _val, _reg) \ argument 187 __bsc_writel(_val, _dev->base + offsetof(struct bsc_regs, _reg))
|
D | i2c-axxia.c | 274 static irqreturn_t axxia_i2c_isr(int irq, void *_dev) in axxia_i2c_isr() argument 276 struct axxia_i2c_dev *idev = _dev; in axxia_i2c_isr()
|
/linux-4.4.14/drivers/net/ethernet/intel/i40evf/ |
D | i40evf_ethtool.c | 59 #define I40EVF_QUEUE_STATS_LEN(_dev) \ argument 61 netdev_priv(_dev))->num_active_queues \ 63 #define I40EVF_STATS_LEN(_dev) \ argument 64 (I40EVF_GLOBAL_STATS_LEN + I40EVF_QUEUE_STATS_LEN(_dev))
|
/linux-4.4.14/sound/core/seq/oss/ |
D | seq_oss_synth.c | 101 snd_seq_oss_synth_probe(struct device *_dev) in snd_seq_oss_synth_probe() argument 103 struct snd_seq_device *dev = to_seq_dev(_dev); in snd_seq_oss_synth_probe() 152 snd_seq_oss_synth_remove(struct device *_dev) in snd_seq_oss_synth_remove() argument 154 struct snd_seq_device *dev = to_seq_dev(_dev); in snd_seq_oss_synth_remove()
|
/linux-4.4.14/arch/x86/include/asm/ |
D | intel-mid.h | 41 static const struct devs_id *const __intel_mid_sfi_##i##_dev __used \
|
/linux-4.4.14/drivers/net/can/c_can/ |
D | c_can_pci.c | 269 #define C_CAN_ID(_vend, _dev, _driverdata) { \ argument 270 PCI_DEVICE(_vend, _dev), \
|
/linux-4.4.14/drivers/net/irda/ |
D | pxaficp_ir.c | 873 static int pxa_irda_suspend(struct platform_device *_dev, pm_message_t state) in pxa_irda_suspend() argument 875 struct net_device *dev = platform_get_drvdata(_dev); in pxa_irda_suspend() 887 static int pxa_irda_resume(struct platform_device *_dev) in pxa_irda_resume() argument 889 struct net_device *dev = platform_get_drvdata(_dev); in pxa_irda_resume() 1043 static int pxa_irda_remove(struct platform_device *_dev) in pxa_irda_remove() argument 1045 struct net_device *dev = platform_get_drvdata(_dev); in pxa_irda_remove()
|
/linux-4.4.14/drivers/scsi/isci/ |
D | remote_device.c | 323 static void rnc_destruct_done(void *_dev) in rnc_destruct_done() argument 325 struct isci_remote_device *idev = _dev; in rnc_destruct_done() 559 static void atapi_remote_device_resume_done(void *_dev) in atapi_remote_device_resume_done() argument 561 struct isci_remote_device *idev = _dev; in atapi_remote_device_resume_done() 970 static void remote_device_resume_done(void *_dev) in remote_device_resume_done() argument 972 struct isci_remote_device *idev = _dev; in remote_device_resume_done() 981 static void sci_stp_remote_device_ready_idle_substate_resume_complete_handler(void *_dev) in sci_stp_remote_device_ready_idle_substate_resume_complete_handler() argument 983 struct isci_remote_device *idev = _dev; in sci_stp_remote_device_ready_idle_substate_resume_complete_handler()
|
/linux-4.4.14/include/net/nfc/ |
D | nfc.h | 208 #define to_nfc_dev(_dev) container_of(_dev, struct nfc_dev, dev) argument
|
/linux-4.4.14/include/net/ |
D | cfg802154.h | 359 #define to_phy(_dev) container_of(_dev, struct wpan_phy, dev) argument
|
/linux-4.4.14/drivers/usb/gadget/udc/ |
D | pxa27x_udc.c | 2316 static irqreturn_t pxa_udc_irq(int irq, void *_dev) in pxa_udc_irq() argument 2318 struct pxa_udc *udc = _dev; in pxa_udc_irq() 2488 static int pxa_udc_remove(struct platform_device *_dev) in pxa_udc_remove() argument 2490 struct pxa_udc *udc = platform_get_drvdata(_dev); in pxa_udc_remove() 2504 static void pxa_udc_shutdown(struct platform_device *_dev) in pxa_udc_shutdown() argument 2506 struct pxa_udc *udc = platform_get_drvdata(_dev); in pxa_udc_shutdown() 2527 static int pxa_udc_suspend(struct platform_device *_dev, pm_message_t state) in pxa_udc_suspend() argument 2529 struct pxa_udc *udc = platform_get_drvdata(_dev); in pxa_udc_suspend() 2552 static int pxa_udc_resume(struct platform_device *_dev) in pxa_udc_resume() argument 2554 struct pxa_udc *udc = platform_get_drvdata(_dev); in pxa_udc_resume()
|
D | pxa25x_udc.c | 1364 lubbock_vbus_irq(int irq, void *_dev) in lubbock_vbus_irq() argument 1366 struct pxa25x_udc *dev = _dev; in lubbock_vbus_irq() 1405 static void udc_watchdog(unsigned long _dev) in udc_watchdog() argument 1407 struct pxa25x_udc *dev = (void *)_dev; in udc_watchdog() 1699 pxa25x_udc_irq(int irq, void *_dev) in pxa25x_udc_irq() argument 1701 struct pxa25x_udc *dev = _dev; in pxa25x_udc_irq() 2239 static void pxa25x_udc_shutdown(struct platform_device *_dev) in pxa25x_udc_shutdown() argument
|
D | net2280.c | 1604 static ssize_t function_show(struct device *_dev, struct device_attribute *attr, in function_show() argument 1607 struct net2280 *dev = dev_get_drvdata(_dev); in function_show() 1616 static ssize_t registers_show(struct device *_dev, in registers_show() argument 1627 dev = dev_get_drvdata(_dev); in registers_show() 1767 static ssize_t queues_show(struct device *_dev, struct device_attribute *attr, in queues_show() argument 1776 dev = dev_get_drvdata(_dev); in queues_show() 3454 static irqreturn_t net2280_irq(int irq, void *_dev) in net2280_irq() argument 3456 struct net2280 *dev = _dev; in net2280_irq() 3485 static void gadget_release(struct device *_dev) in gadget_release() argument 3487 struct net2280 *dev = dev_get_drvdata(_dev); in gadget_release()
|
D | s3c2410_udc.c | 863 static irqreturn_t s3c2410_udc_irq(int dummy, void *_dev) in s3c2410_udc_irq() argument 865 struct s3c2410_udc *dev = _dev; in s3c2410_udc_irq() 1492 static irqreturn_t s3c2410_udc_vbus_irq(int irq, void *_dev) in s3c2410_udc_vbus_irq() argument 1494 struct s3c2410_udc *dev = _dev; in s3c2410_udc_vbus_irq()
|
D | net2272.c | 1183 registers_show(struct device *_dev, struct device_attribute *attr, char *buf) in registers_show() argument 1193 dev = dev_get_drvdata(_dev); in registers_show() 2067 static irqreturn_t net2272_irq(int irq, void *_dev) in net2272_irq() argument 2069 struct net2272 *dev = _dev; in net2272_irq() 2219 net2272_gadget_release(struct device *_dev) in net2272_gadget_release() argument 2221 struct net2272 *dev = dev_get_drvdata(_dev); in net2272_gadget_release()
|
D | goku_udc.c | 1546 static irqreturn_t goku_irq(int irq, void *_dev) in goku_irq() argument 1548 struct goku_udc *dev = _dev; in goku_irq() 1712 static void gadget_release(struct device *_dev) in gadget_release() argument 1714 struct goku_udc *dev = dev_get_drvdata(_dev); in gadget_release()
|
D | gr_udc.c | 1416 static irqreturn_t gr_irq_handler(int irq, void *_dev) in gr_irq_handler() argument 1418 struct gr_udc *dev = _dev; in gr_irq_handler() 1472 static irqreturn_t gr_irq(int irq, void *_dev) in gr_irq() argument 1474 struct gr_udc *dev = _dev; in gr_irq()
|
D | s3c-hsudc.c | 1069 static irqreturn_t s3c_hsudc_irq(int irq, void *_dev) in s3c_hsudc_irq() argument 1071 struct s3c_hsudc *hsudc = _dev; in s3c_hsudc_irq()
|
D | omap_udc.c | 1890 static irqreturn_t omap_udc_pio_irq(int irq, void *_dev) in omap_udc_pio_irq() argument 1896 struct omap_udc *udc = _dev; in omap_udc_pio_irq() 1969 static irqreturn_t omap_udc_iso_irq(int irq, void *_dev) in omap_udc_iso_irq() argument 1971 struct omap_udc *udc = _dev; in omap_udc_iso_irq()
|
D | mv_udc_core.c | 2080 static void gadget_release(struct device *_dev) in gadget_release() argument 2084 udc = dev_get_drvdata(_dev); in gadget_release()
|
/linux-4.4.14/drivers/staging/most/hdm-i2c/ |
D | hdm_i2c.c | 294 static irqreturn_t most_irq_handler(int irq, void *_dev) in most_irq_handler() argument 296 struct hdm_i2c *dev = _dev; in most_irq_handler()
|
/linux-4.4.14/drivers/net/wireless/mediatek/mt7601u/ |
D | mt7601u.h | 301 #define mt76_rmw_field(_dev, _reg, _field, _val) \ argument 302 mt76_rmw(_dev, _reg, _field, MT76_SET(_field, _val))
|
/linux-4.4.14/arch/arm/common/ |
D | locomo.c | 215 static void locomo_dev_release(struct device *_dev) in locomo_dev_release() argument 217 struct locomo_dev *dev = LOCOMO_DEV(_dev); in locomo_dev_release() 822 static int locomo_match(struct device *_dev, struct device_driver *_drv) in locomo_match() argument 824 struct locomo_dev *dev = LOCOMO_DEV(_dev); in locomo_match()
|
D | sa1111.c | 608 static void sa1111_dev_release(struct device *_dev) in sa1111_dev_release() argument 610 struct sa1111_dev *dev = SA1111_DEV(_dev); in sa1111_dev_release() 1288 static int sa1111_match(struct device *_dev, struct device_driver *_drv) in sa1111_match() argument 1290 struct sa1111_dev *dev = SA1111_DEV(_dev); in sa1111_match()
|
/linux-4.4.14/drivers/bus/ |
D | mips_cdmm.c | 92 static ssize_t name##_show(struct device *_dev, \ 95 struct mips_cdmm_device *dev = to_mips_cdmm_device(_dev); \
|
/linux-4.4.14/drivers/clk/tegra/ |
D | clk.h | 601 #define TEGRA_CLK_DUPLICATE(_clk_id, _dev, _con) \ argument 605 .dev_id = _dev, \
|
/linux-4.4.14/arch/mips/include/asm/pci/ |
D | bridge.h | 619 #define BRIDGE_INT_DEV_SET(_dev, _line) (_dev << BRIDGE_INT_DEV_SHFT(_line)) argument
|
/linux-4.4.14/drivers/staging/most/hdm-dim2/ |
D | dim2_hdm.c | 450 static irqreturn_t dim2_ahb_isr(int irq, void *_dev) in dim2_ahb_isr() argument 452 struct dim2_hdm *dev = _dev; in dim2_ahb_isr()
|
/linux-4.4.14/drivers/input/touchscreen/ |
D | rohm_bu21023.c | 1106 static void rohm_ts_remove_sysfs_group(void *_dev) in rohm_ts_remove_sysfs_group() argument 1108 struct device *dev = _dev; in rohm_ts_remove_sysfs_group()
|
D | elants_i2c.c | 848 static irqreturn_t elants_i2c_irq(int irq, void *_dev) in elants_i2c_irq() argument 851 struct elants_data *ts = _dev; in elants_i2c_irq()
|
/linux-4.4.14/drivers/block/xen-blkback/ |
D | xenbus.c | 300 static ssize_t show_##name(struct device *_dev, \ 304 struct xenbus_device *dev = to_xenbus_device(_dev); \
|
/linux-4.4.14/drivers/thermal/ |
D | thermal_core.c | 587 #define to_thermal_zone(_dev) \ argument 588 container_of(_dev, struct thermal_zone_device, device) 1106 #define to_cooling_device(_dev) \ argument 1107 container_of(_dev, struct thermal_cooling_device, device)
|
/linux-4.4.14/arch/arm/mach-rpc/ |
D | ecard.c | 1105 static int ecard_match(struct device *_dev, struct device_driver *_drv) in ecard_match() argument 1107 struct expansion_card *ec = ECARD_DEV(_dev); in ecard_match()
|
/linux-4.4.14/drivers/media/usb/airspy/ |
D | airspy.c | 160 #define airspy_dbg_usb_control_msg(_dev, _r, _t, _v, _i, _b, _l) { \ argument 166 dev_dbg(_dev, "%02x %02x %02x %02x %02x %02x %02x %02x %s %*ph\n", \
|
/linux-4.4.14/drivers/media/usb/msi2500/ |
D | msi2500.c | 661 #define msi2500_dbg_usb_control_msg(_dev, _r, _t, _v, _i, _b, _l) { \ argument 667 dev_dbg(_dev, "%02x %02x %02x %02x %02x %02x %02x %02x %s %*ph\n", \
|
/linux-4.4.14/drivers/net/ethernet/natsemi/ |
D | natsemi.c | 659 #define NATSEMI_CREATE_FILE(_dev, _name) \ argument 660 device_create_file(&_dev->dev, &dev_attr_##_name) 661 #define NATSEMI_REMOVE_FILE(_dev, _name) \ argument 662 device_remove_file(&_dev->dev, &dev_attr_##_name)
|
D | ns83820.c | 940 static void rx_action(unsigned long _dev) argument 942 struct net_device *ndev = (void *)_dev;
|
/linux-4.4.14/drivers/net/ethernet/sgi/ |
D | ioc3-eth.c | 731 static irqreturn_t ioc3_interrupt(int irq, void *_dev) in ioc3_interrupt() argument 733 struct net_device *dev = (struct net_device *)_dev; in ioc3_interrupt()
|
/linux-4.4.14/drivers/net/ethernet/broadcom/ |
D | sb1250-mac.c | 2151 static int sb1250_change_mtu(struct net_device *_dev, int new_mtu) in sb1250_change_mtu() argument 2155 _dev->mtu = new_mtu; in sb1250_change_mtu()
|
/linux-4.4.14/drivers/media/usb/hackrf/ |
D | hackrf.c | 179 #define hackrf_dbg_usb_control_msg(_dev, _r, _t, _v, _i, _b, _l) { \ argument 185 dev_dbg(_dev, "%02x %02x %02x %02x %02x %02x %02x %02x %s %*ph\n", \
|
/linux-4.4.14/drivers/media/pci/ddbridge/ |
D | ddbridge-core.c | 1701 #define DDB_ID(_vend, _dev, _subvend, _subdev, _driverdata) { \ argument 1702 .vendor = _vend, .device = _dev, \
|
/linux-4.4.14/drivers/hwtracing/coresight/ |
D | coresight-etm3x.c | 1595 static ssize_t name##_show(struct device *_dev, \ 1598 struct etm_drvdata *drvdata = dev_get_drvdata(_dev->parent); \
|
D | coresight-etm4x.c | 2215 static ssize_t name##_show(struct device *_dev, \ 2218 struct etmv4_drvdata *drvdata = dev_get_drvdata(_dev->parent); \
|
/linux-4.4.14/drivers/scsi/ufs/ |
D | ufshcd.c | 77 #define ufshcd_toggle_vreg(_dev, _vreg, _on) \ argument 81 _ret = ufshcd_enable_vreg(_dev, _vreg); \ 83 _ret = ufshcd_disable_vreg(_dev, _vreg); \
|