| /drivers/iio/adc/ |
| A D | max1241.c | 26 struct gpio_desc *shutdown; member 76 if (adc->shutdown) { in max1241_read_raw() 77 gpiod_set_value(adc->shutdown, 0); in max1241_read_raw() 80 gpiod_set_value(adc->shutdown, 1); in max1241_read_raw() 158 adc->shutdown = devm_gpiod_get_optional(dev, "shutdown", in max1241_probe() 160 if (IS_ERR(adc->shutdown)) in max1241_probe() 161 return dev_err_probe(dev, PTR_ERR(adc->shutdown), in max1241_probe() 164 if (adc->shutdown) in max1241_probe()
|
| /drivers/iio/pressure/ |
| A D | mpl115.c | 31 struct gpio_desc *shutdown; member 200 data->shutdown = devm_gpiod_get_optional(dev, "shutdown", in mpl115_probe() 202 if (IS_ERR(data->shutdown)) in mpl115_probe() 203 return dev_err_probe(dev, PTR_ERR(data->shutdown), in mpl115_probe() 206 if (data->shutdown) { in mpl115_probe() 234 gpiod_set_value(data->shutdown, 1); in mpl115_runtime_suspend() 243 gpiod_set_value(data->shutdown, 0); in mpl115_runtime_resume()
|
| /drivers/media/pci/cx23885/ |
| A D | cx23885-input.c | 109 params.shutdown = atomic_read(&dev->ir_input_stopping); in cx23885_input_rx_work_handler() 120 params.shutdown = atomic_read(&dev->ir_input_stopping); in cx23885_input_rx_work_handler() 156 params.shutdown = false; in cx23885_input_ir_start() 184 params.shutdown = false; in cx23885_input_ir_start() 238 while (params.shutdown == false) { in cx23885_input_ir_stop() 241 params.shutdown = true; in cx23885_input_ir_stop()
|
| A D | cx23888-ir.c | 706 state->rx_params.shutdown = true; in cx23888_ir_rx_shutdown() 720 if (p->shutdown) in cx23888_ir_rx_s_parameters() 728 o->shutdown = p->shutdown; in cx23888_ir_rx_s_parameters() 834 state->tx_params.shutdown = true; in cx23888_ir_tx_shutdown() 848 if (p->shutdown) in cx23888_ir_tx_s_parameters() 856 o->shutdown = p->shutdown; in cx23888_ir_tx_s_parameters() 1110 .shutdown = true, 1129 .shutdown = true,
|
| /drivers/usb/host/ |
| A D | ehci-sh.c | 43 .shutdown = ehci_shutdown, 171 if (hcd->driver->shutdown) in ehci_hcd_sh_shutdown() 172 hcd->driver->shutdown(hcd); in ehci_hcd_sh_shutdown() 178 .shutdown = ehci_hcd_sh_shutdown,
|
| A D | ehci-hub.c | 387 if (!HCD_HW_ACCESSIBLE(hcd) || ehci->shutdown) in ehci_bus_resume() 388 goto shutdown; in ehci_bus_resume() 440 if (ehci->shutdown) in ehci_bus_resume() 441 goto shutdown; in ehci_bus_resume() 459 if (ehci->shutdown) in ehci_bus_resume() 460 goto shutdown; in ehci_bus_resume() 484 if (ehci->shutdown) in ehci_bus_resume() 485 goto shutdown; in ehci_bus_resume() 504 if (ehci->shutdown) in ehci_bus_resume() 505 goto shutdown; in ehci_bus_resume() [all …]
|
| A D | ohci-sa1111.c | 95 .shutdown = ohci_shutdown, 277 hcd->driver->shutdown(hcd); in ohci_hcd_sa1111_shutdown() 286 .shutdown = ohci_hcd_sa1111_shutdown,
|
| A D | ohci-exynos.c | 207 if (hcd->driver->shutdown) in exynos_ohci_shutdown() 208 hcd->driver->shutdown(hcd); in exynos_ohci_shutdown() 266 .shutdown = exynos_ohci_shutdown,
|
| /drivers/base/ |
| A D | syscore.c | 121 if (ops->shutdown) { in syscore_shutdown() 123 pr_info("PM: Calling %pS\n", ops->shutdown); in syscore_shutdown() 124 ops->shutdown(); in syscore_shutdown()
|
| A D | isa.c | 61 if (isa_driver && isa_driver->shutdown) in isa_bus_shutdown() 62 isa_driver->shutdown(dev, to_isa_dev(dev)->id); in isa_bus_shutdown() 90 .shutdown = isa_bus_shutdown,
|
| A D | auxiliary.c | 253 if (auxdrv && auxdrv->shutdown) in auxiliary_bus_shutdown() 254 auxdrv->shutdown(auxdev); in auxiliary_bus_shutdown() 261 .shutdown = auxiliary_bus_shutdown,
|
| /drivers/s390/char/ |
| A D | hmcdrv_ftp.c | 35 void (*shutdown)(void); member 298 .shutdown = diag_ftp_shutdown, in hmcdrv_ftp_startup() 304 .shutdown = sclp_ftp_shutdown, in hmcdrv_ftp_startup() 342 hmcdrv_ftp_funcs->shutdown(); in hmcdrv_ftp_shutdown()
|
| /drivers/uio/ |
| A D | uio_fsl_elbc_gpcm.c | 62 void (*shutdown)(struct uio_info *info, bool init_err); member 212 priv->shutdown = netx5152_shutdown; in setup_periph() 424 if (priv->shutdown) in uio_fsl_elbc_gpcm_probe() 425 priv->shutdown(info, true); in uio_fsl_elbc_gpcm_probe() 437 if (priv->shutdown) in uio_fsl_elbc_gpcm_remove() 438 priv->shutdown(info, false); in uio_fsl_elbc_gpcm_remove()
|
| /drivers/virt/acrn/ |
| A D | irqfd.c | 32 struct work_struct shutdown; member 65 irqfd = container_of(work, struct hsm_irqfd, shutdown); in hsm_irqfd_shutdown_work() 89 queue_work(vm->irqfd_wq, &irqfd->shutdown); in hsm_irqfd_wakeup() 122 INIT_WORK(&irqfd->shutdown, hsm_irqfd_shutdown_work); in acrn_irqfd_assign()
|
| /drivers/mmc/core/ |
| A D | bus.c | 149 if (dev->driver && drv->shutdown) in mmc_bus_shutdown() 150 drv->shutdown(card); in mmc_bus_shutdown() 154 if (host->bus_ops->shutdown) { in mmc_bus_shutdown() 155 ret = host->bus_ops->shutdown(host); in mmc_bus_shutdown() 225 .shutdown = mmc_bus_shutdown,
|
| /drivers/gpu/drm/nouveau/include/nvif/ |
| A D | log.h | 22 void (*shutdown)(struct nvif_log *log); member 42 log->shutdown(log); in nvif_log_shutdown()
|
| /drivers/rapidio/ |
| A D | rio-driver.c | 136 if (rdrv && rdrv->shutdown) in rio_device_shutdown() 137 rdrv->shutdown(rdev); in rio_device_shutdown() 237 .shutdown = rio_device_shutdown,
|
| /drivers/net/phy/ |
| A D | mdio_device.c | 198 if (mdiodrv->shutdown) in mdio_shutdown() 199 mdiodrv->shutdown(mdiodev); in mdio_shutdown() 216 mdiodrv->driver.shutdown = mdio_shutdown; in mdio_driver_register()
|
| /drivers/vfio/ |
| A D | virqfd.c | 37 queue_work(vfio_irqfd_cleanup_wq, &virqfd->shutdown); in virqfd_deactivate() 87 struct virqfd *virqfd = container_of(work, struct virqfd, shutdown); in virqfd_shutdown() 131 INIT_WORK(&virqfd->shutdown, virqfd_shutdown); in vfio_virqfd_enable()
|
| /drivers/gpu/drm/i915/display/ |
| A D | intel_encoder.c | 75 if (encoder->shutdown) in intel_encoder_shutdown_all() 76 encoder->shutdown(encoder); in intel_encoder_shutdown_all()
|
| /drivers/media/i2c/cx25840/ |
| A D | cx25840-ir.c | 720 ir_state->rx_params.shutdown = true; in cx25840_ir_rx_shutdown() 737 if (p->shutdown) in cx25840_ir_rx_s_parameters() 748 o->shutdown = p->shutdown; in cx25840_ir_rx_s_parameters() 908 ir_state->tx_params.shutdown = true; in cx25840_ir_tx_shutdown() 925 if (p->shutdown) in cx25840_ir_tx_s_parameters() 935 o->shutdown = p->shutdown; in cx25840_ir_tx_s_parameters() 1158 .shutdown = true, 1177 .shutdown = true,
|
| /drivers/soundwire/ |
| A D | bus_type.c | 195 if (drv->shutdown) in sdw_drv_shutdown() 196 drv->shutdown(slave); in sdw_drv_shutdown() 219 drv->driver.shutdown = sdw_drv_shutdown; in __sdw_register_driver()
|
| /drivers/phy/marvell/ |
| A D | Kconfig | 90 SoC. This driver will do the PHY initialization and shutdown. 101 SoC. This driver will do the PHY initialization and shutdown. 112 SoC. This driver will do the PHY initialization and shutdown. 123 SoC. This driver will do the PHY initialization and shutdown.
|
| /drivers/gpu/drm/display/ |
| A D | drm_dp_aux_bus.c | 127 if (aux_ep_drv->shutdown) in dp_aux_ep_shutdown() 128 aux_ep_drv->shutdown(to_dp_aux_ep_dev(dev)); in dp_aux_ep_shutdown() 136 .shutdown = dp_aux_ep_shutdown,
|
| /drivers/bluetooth/ |
| A D | bcm203x.c | 53 atomic_t shutdown; member 145 if (atomic_read(&data->shutdown)) in bcm203x_work() 239 atomic_inc(&data->shutdown); in bcm203x_disconnect()
|