/drivers/gpu/ipu-v3/ |
D | ipu-image-convert.c | 568 struct ipu_image_convert_run *run; in get_run_count() local 573 list_for_each_entry(run, q, list) { in get_run_count() 574 if (run->ctx == ctx) in get_run_count() 581 static void convert_stop(struct ipu_image_convert_run *run) in convert_stop() argument 583 struct ipu_image_convert_ctx *ctx = run->ctx; in convert_stop() 588 __func__, chan->ic_task, ctx, run); in convert_stop() 679 static int convert_start(struct ipu_image_convert_run *run) in convert_start() argument 681 struct ipu_image_convert_ctx *ctx = run->ctx; in convert_start() 691 __func__, chan->ic_task, ctx, run); in convert_start() 780 static int do_run(struct ipu_image_convert_run *run) in do_run() argument [all …]
|
/drivers/tty/ |
D | tty_audit.c | 237 size_t run; in tty_audit_add_data() local 239 run = N_TTY_BUF_SIZE - buf->valid; in tty_audit_add_data() 240 if (run > size) in tty_audit_add_data() 241 run = size; in tty_audit_add_data() 242 memcpy(buf->data + buf->valid, data, run); in tty_audit_add_data() 243 buf->valid += run; in tty_audit_add_data() 244 data += run; in tty_audit_add_data() 245 size -= run; in tty_audit_add_data()
|
/drivers/mmc/card/ |
D | mmc_test.c | 1001 int (*run)(struct mmc_test_card *); member 2550 .run = mmc_test_basic_write, 2555 .run = mmc_test_basic_read, 2561 .run = mmc_test_verify_write, 2568 .run = mmc_test_verify_read, 2575 .run = mmc_test_multi_write, 2582 .run = mmc_test_multi_read, 2589 .run = mmc_test_pow2_write, 2596 .run = mmc_test_pow2_read, 2603 .run = mmc_test_weird_write, [all …]
|
/drivers/media/platform/mtk-vpu/ |
D | mtk_vpu.c | 206 struct vpu_run run; member 422 return vpu->run.enc_capability; in vpu_get_venc_hw_capa() 528 struct vpu_run *run = &vpu->run; in vpu_load_firmware() local 552 run->signaled = false; in vpu_load_firmware() 572 ret = wait_event_interruptible_timeout(run->wq, in vpu_load_firmware() 573 run->signaled, in vpu_load_firmware() 586 dev_info(dev, "vpu is ready. Fw version %s\n", run->fw_ver); in vpu_load_firmware() 599 struct vpu_run *run = (struct vpu_run *)data; in vpu_init_ipi_handler() local 601 vpu->run.signaled = run->signaled; in vpu_init_ipi_handler() 602 strncpy(vpu->run.fw_ver, run->fw_ver, VPU_FW_VER_LEN); in vpu_init_ipi_handler() [all …]
|
/drivers/acpi/apei/ |
D | erst.c | 300 .run = apei_exec_read_register, 304 .run = apei_exec_read_register_value, 308 .run = apei_exec_write_register, 312 .run = apei_exec_write_register_value, 316 .run = apei_exec_noop, 320 .run = erst_exec_load_var1, 324 .run = erst_exec_load_var2, 328 .run = erst_exec_store_var1, 332 .run = erst_exec_add, 336 .run = erst_exec_subtract, [all …]
|
D | apei-base.c | 162 apei_exec_ins_func_t run; in __apei_exec_run() local 180 !ctx->ins_table[entry->instruction].run) { in __apei_exec_run() 186 run = ctx->ins_table[entry->instruction].run; in __apei_exec_run() 187 rc = run(ctx, entry); in __apei_exec_run() 221 if (ins >= ctx->instructions || !ins_table[ins].run) { in apei_exec_for_each_entry()
|
D | einj.c | 119 .run = apei_exec_read_register, 123 .run = apei_exec_read_register_value, 127 .run = apei_exec_write_register, 131 .run = apei_exec_write_register_value, 135 .run = apei_exec_noop,
|
/drivers/s390/scsi/ |
D | zfcp_dbf.c | 310 rec->u.run.fsf_req_id = erp->fsf_req_id; in zfcp_dbf_rec_run_lvl() 311 rec->u.run.rec_status = erp->status; in zfcp_dbf_rec_run_lvl() 312 rec->u.run.rec_step = erp->step; in zfcp_dbf_rec_run_lvl() 313 rec->u.run.rec_action = erp->action; in zfcp_dbf_rec_run_lvl() 316 rec->u.run.rec_count = in zfcp_dbf_rec_run_lvl() 319 rec->u.run.rec_count = atomic_read(&erp->port->erp_counter); in zfcp_dbf_rec_run_lvl() 321 rec->u.run.rec_count = atomic_read(&erp->adapter->erp_counter); in zfcp_dbf_rec_run_lvl() 359 rec->u.run.fsf_req_id = req_id; in zfcp_dbf_rec_run_wka() 360 rec->u.run.rec_status = ~0; in zfcp_dbf_rec_run_wka() 361 rec->u.run.rec_step = ~0; in zfcp_dbf_rec_run_wka() [all …]
|
/drivers/staging/vc04_services/interface/vchiq_arm/ |
D | vchiq_2835_arm.c | 381 int run, addridx, actual_pages; in create_pagelist() local 466 run = 0; in create_pagelist() 470 if ((addr == next_addr) && (run < (PAGE_SIZE - 1))) { in create_pagelist() 472 run++; in create_pagelist() 474 addrs[addridx] = (unsigned long)base_addr + run; in create_pagelist() 478 run = 0; in create_pagelist() 482 addrs[addridx] = (unsigned long)base_addr + run; in create_pagelist()
|
/drivers/spi/ |
D | spi-bfin-sport.c | 71 bool run; member 487 if (list_empty(&drv_data->queue) || !drv_data->run) { in bfin_sport_spi_pump_messages() 544 if (!drv_data->run) { in bfin_sport_spi_transfer() 556 if (drv_data->run && !drv_data->busy) in bfin_sport_spi_transfer() 660 drv_data->run = false; in bfin_sport_spi_init_queue() 679 if (drv_data->run || drv_data->busy) { in bfin_sport_spi_start_queue() 684 drv_data->run = true; in bfin_sport_spi_start_queue() 710 drv_data->run = false; in bfin_sport_spi_stop_queue()
|
/drivers/usb/usbip/ |
D | Kconfig | 23 which is run on the remote machine. 53 This enables the USB/IP host driver, which is run on the 64 driver, which is run on the host machine, allowing the
|
/drivers/dma/qcom/ |
D | Kconfig | 18 the guest OS would run QCOM_HIDMA channel driver and the 19 host would run the QCOM_HIDMA_MGMT management driver.
|
/drivers/staging/greybus/tools/ |
D | README.loopback | 7 A user could run a test without the need of the test application given 12 created and for the loopback test application to be able to run. 80 -i iteration count - the number of iterations to run the test over 100 3.1 - Using the driver sysfs files to run a test on a single device: 161 run the test (1st, 2nd, or both devices):
|
/drivers/iio/light/ |
D | si1145.c | 472 int run = 1; in si1145_trigger_handler() local 474 while (i + run < indio_dev->masklength) { in si1145_trigger_handler() 475 if (!test_bit(i + run, indio_dev->active_scan_mask)) in si1145_trigger_handler() 477 if (indio_dev->channels[i + run].address != in si1145_trigger_handler() 478 indio_dev->channels[i].address + 2 * run) in si1145_trigger_handler() 480 run++; in si1145_trigger_handler() 485 sizeof(u16) * run, &buffer[j]); in si1145_trigger_handler() 488 j += run * sizeof(u16); in si1145_trigger_handler() 489 i += run - 1; in si1145_trigger_handler()
|
/drivers/net/slip/ |
D | Kconfig | 27 want to run term (term is a program which gives you almost full 72 Just occasionally you may need to run IP over hostile serial 77 end of the link as well. It's good enough, for example, to run IP
|
/drivers/net/phy/ |
D | phy_device.c | 201 int (*run)(struct phy_device *)) in phy_register_fixup() 211 fixup->run = run; in phy_register_fixup() 223 int (*run)(struct phy_device *)) in phy_register_fixup_for_uid() 225 return phy_register_fixup(PHY_ANY_ID, phy_uid, phy_uid_mask, run); in phy_register_fixup_for_uid() 231 int (*run)(struct phy_device *)) in phy_register_fixup_for_id() 233 return phy_register_fixup(bus_id, PHY_ANY_UID, 0xffffffff, run); in phy_register_fixup_for_id() 262 int err = fixup->run(phydev); in phy_scan_fixups()
|
/drivers/watchdog/ |
D | bfin_wdt.c | 130 int run = bfin_wdt_running(); in bfin_wdt_set_timeout() local 133 if (run) in bfin_wdt_set_timeout()
|
/drivers/net/wan/ |
D | farsync.c | 432 int run; /* Port is running */ member 991 if (port->run) in fst_op_raise() 1001 if (port->run) in fst_op_lower() 1340 if (!port->run) in do_bottom_half_tx() 1439 if (!port->run) in do_bottom_half_rx() 1566 if (port->run) in fst_intr() 1574 if (port->run) in fst_intr() 2143 if (port->run) { in fst_openport() 2147 port->run = 0; in fst_openport() 2155 port->run = 1; in fst_openport() [all …]
|
/drivers/md/ |
D | md.h | 481 int (*run)(struct mddev *mddev); member 585 void (*run) (struct md_thread *thread); member 609 void (*run)(struct md_thread *thread),
|
/drivers/i2c/muxes/ |
D | Kconfig | 59 different sets of pins at run-time. 83 want to change the I2C master at run-time depending on features.
|
/drivers/lguest/ |
D | Kconfig | 6 This is a very simple module which allows you to run
|
/drivers/hv/ |
D | Kconfig | 7 Select this option to run Linux as a Hyper-V client operating
|
/drivers/remoteproc/ |
D | Kconfig | 28 use-cases to run on your platform (multimedia codecs are 68 use-cases to run on your platform (multimedia codecs are
|
/drivers/s390/net/ |
D | Kconfig | 80 Select this option to be able to run qeth devices in layer 2 mode. 89 Select this option to be able to run qeth devices in layer 3 mode.
|
/drivers/gpu/drm/vmwgfx/ |
D | Kconfig | 14 Choose this option if you would like to run 3D acceleration
|