| /OK3568_Linux_fs/kernel/drivers/media/usb/stkwebcam/ |
| H A D | stk-webcam.c | 324 if (urb->status == -ENOENT || urb->status == -ECONNRESET in stk_isoc_handler() 325 || urb->status == -ESHUTDOWN) { in stk_isoc_handler() 332 if (urb->status != -EINPROGRESS && urb->status != 0) { in stk_isoc_handler() 333 pr_err("isoc_handler: urb->status == %d\n", urb->status); in stk_isoc_handler() 347 if (urb->iso_frame_desc[i].status != 0) { in stk_isoc_handler() 348 if (urb->iso_frame_desc[i].status != -EXDEV) in stk_isoc_handler() 350 i, urb->iso_frame_desc[i].status); in stk_isoc_handler()
|
| /OK3568_Linux_fs/kernel/drivers/media/platform/qcom/venus/ |
| H A D | hfi_venus.c | 59 u32 status; member 675 qhdr->status = 1; in venus_set_qhdr_defaults() 1037 u32 status; in venus_isr() local 1042 status = venus_readl(hdev, WRAPPER_INTR_STATUS); in venus_isr() 1044 if (status & WRAPPER_INTR_STATUS_A2H_MASK || in venus_isr() 1045 status & WRAPPER_INTR_STATUS_A2HWD_MASK || in venus_isr() 1046 status & CPU_CS_SCIACMDARG0_INIT_IDLE_MSG_MASK) in venus_isr() 1047 hdev->irq_status = status; in venus_isr() 1050 venus_writel(hdev, WRAPPER_INTR_CLEAR, status); in venus_isr()
|
| /OK3568_Linux_fs/kernel/sound/soc/bcm/ |
| H A D | cygnus-ssp.c | 257 int status = 0; in audio_ssp_init_portregs() local 331 status = -EINVAL; in audio_ssp_init_portregs() 334 return status; in audio_ssp_init_portregs() 387 int status = 0; in audio_ssp_out_enable() local 422 status = -EINVAL; in audio_ssp_out_enable() 425 return status; in audio_ssp_out_enable() 431 int status = 0; in audio_ssp_out_disable() local 485 status = -EINVAL; in audio_ssp_out_disable() 488 return status; in audio_ssp_out_disable()
|
| /OK3568_Linux_fs/kernel/drivers/gpu/drm/mgag200/ |
| H A D | mgag200_mode.c | 90 unsigned int status = 0; in mga_wait_vsync() local 93 status = RREG32(MGAREG_Status); in mga_wait_vsync() 94 } while ((status & 0x08) && time_before(jiffies, timeout)); in mga_wait_vsync() 96 status = 0; in mga_wait_vsync() 98 status = RREG32(MGAREG_Status); in mga_wait_vsync() 99 } while (!(status & 0x08) && time_before(jiffies, timeout)); in mga_wait_vsync() 105 unsigned int status = 0; in mga_wait_busy() local 107 status = RREG8(MGAREG_Status + 2); in mga_wait_busy() 108 } while ((status & 0x01) && time_before(jiffies, timeout)); in mga_wait_busy()
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/chelsio/cxgb3/ |
| H A D | cxgb3_offload.c | 710 if (rpl->status != CPL_ERR_NONE) in do_smt_write_rpl() 712 rpl->status, GET_TID(rpl)); in do_smt_write_rpl() 721 if (rpl->status != CPL_ERR_NONE) in do_l2t_write_rpl() 723 rpl->status, GET_TID(rpl)); in do_l2t_write_rpl() 732 if (rpl->status != CPL_ERR_NONE) in do_rte_write_rpl() 734 rpl->status, GET_TID(rpl)); in do_rte_write_rpl() 860 u8 cmd = req->status; in do_abort_req_rss() 862 if (req->status == CPL_ERR_RTX_NEG_ADVICE || in do_abort_req_rss() 863 req->status == CPL_ERR_PERSIST_NEG_ADVICE) in do_abort_req_rss()
|
| /OK3568_Linux_fs/kernel/drivers/ntb/test/ |
| H A D | ntb_perf.c | 181 int status; member 1035 pthr->status = ret; in perf_thread_work() 1041 pthr->status = ret; in perf_thread_work() 1045 pthr->status = perf_sync_test(pthr); in perf_thread_work() 1098 pthr->status = -ENODATA; in perf_submit_test() 1132 if (pthr->status == -ENODATA) in perf_read_stats() 1135 if (pthr->status) { in perf_read_stats() 1137 "%d: error status %d\n", tidx, pthr->status); in perf_read_stats() 1166 pthr->status = -ENODATA; in perf_init_threads()
|
| /OK3568_Linux_fs/kernel/mm/ |
| H A D | filemap.c | 3465 long status = 0; in generic_perform_write() local 3492 status = -EFAULT; in generic_perform_write() 3497 status = -EINTR; in generic_perform_write() 3501 status = a_ops->write_begin(file, mapping, pos, bytes, flags, in generic_perform_write() 3503 if (unlikely(status < 0)) in generic_perform_write() 3512 status = a_ops->write_end(file, mapping, pos, bytes, copied, in generic_perform_write() 3514 if (unlikely(status < 0)) in generic_perform_write() 3516 copied = status; in generic_perform_write() 3540 return written ? written : status; in generic_perform_write() 3572 ssize_t status; in __generic_file_write_iter() local [all …]
|
| /OK3568_Linux_fs/kernel/drivers/tty/serial/ |
| H A D | imx.c | 919 unsigned int status, changed; in imx_uart_mctrl_check() local 921 status = imx_uart_get_hwmctrl(sport); in imx_uart_mctrl_check() 922 changed = status ^ sport->old_status; in imx_uart_mctrl_check() 927 sport->old_status = status; in imx_uart_mctrl_check() 929 if (changed & TIOCM_RI && status & TIOCM_RI) in imx_uart_mctrl_check() 934 uart_handle_dcd_change(&sport->port, status & TIOCM_CAR); in imx_uart_mctrl_check() 936 uart_handle_cts_change(&sport->port, status & TIOCM_CTS); in imx_uart_mctrl_check() 1152 enum dma_status status; in imx_uart_dma_rx_callback() local 1157 status = dmaengine_tx_status(chan, sport->rx_cookie, &state); in imx_uart_dma_rx_callback() 1159 if (status == DMA_ERROR) { in imx_uart_dma_rx_callback() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/scsi/arm/ |
| H A D | acornscsi.c | 507 prev = host->status[target][ptr].when; in acornscsi_dumplogline() 512 if (!host->status[target][ptr].when) in acornscsi_dumplogline() 517 printk("%c%02X", host->status[target][ptr].irq ? '-' : ' ', in acornscsi_dumplogline() 518 host->status[target][ptr].ph); in acornscsi_dumplogline() 522 printk(" %02X", host->status[target][ptr].ssr); in acornscsi_dumplogline() 526 time_diff = host->status[target][ptr].when - prev; in acornscsi_dumplogline() 527 prev = host->status[target][ptr].when; in acornscsi_dumplogline() 2840 prev = host->status[devidx][statptr].when; in acornscsi_show_info() 2843 if (host->status[devidx][statptr].when) { in acornscsi_show_info() 2845 host->status[devidx][statptr].irq ? '-' : ' ', in acornscsi_show_info() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/input/touchscreen/ |
| H A D | stmfts.c | 452 u8 status[4]; in stmfts_sysfs_read_status() local 456 sizeof(status), status); in stmfts_sysfs_read_status() 460 return sprintf(buf, "%#02x\n", status[0]); in stmfts_sysfs_read_status() 506 static DEVICE_ATTR(status, 0444, stmfts_sysfs_read_status, NULL);
|
| /OK3568_Linux_fs/kernel/drivers/media/rc/ |
| H A D | ati_remote.c | 387 if (urb->status) { in ati_remote_irq_out() 389 __func__, urb->status); in ati_remote_irq_out() 424 ((ati_remote->out_urb->status != -EINPROGRESS) || in ati_remote_sendpacket() 657 switch (urb->status) { in ati_remote_irq_in() 671 __func__, urb->status); in ati_remote_irq_in()
|
| /OK3568_Linux_fs/kernel/drivers/tty/serial/8250/ |
| H A D | 8250_dw.c | 253 unsigned int status, usr, rfl; in dw8250_handle_irq() local 266 status = p->serial_in(p, UART_LSR); in dw8250_handle_irq() 268 if (!(status & (UART_LSR_DR | UART_LSR_BI)) && !(usr & 0x1) && (rfl == 0)) in dw8250_handle_irq() 403 p->status &= ~UPSTAT_AUTOCTS; in dw8250_set_termios() 405 p->status |= UPSTAT_AUTOCTS; in dw8250_set_termios()
|
| H A D | 8250_exar.c | 220 unsigned char status; in default_setup() local 234 status = readb(port->port.membase + UART_EXAR_DVID); in default_setup() 235 if (status == 0x82 || status == 0x84 || status == 0x88) { in default_setup()
|
| /OK3568_Linux_fs/u-boot/drivers/usb/gadget/ |
| H A D | f_dfu.c | 614 req->status = 0; in dfu_handle() 798 int status; in dfu_bind_config() local 815 status = usb_add_function(c, &f_dfu->usb_function); in dfu_bind_config() 816 if (status) in dfu_bind_config() 819 return status; in dfu_bind_config()
|
| /OK3568_Linux_fs/kernel/arch/alpha/kernel/ |
| H A D | core_titan.c | 623 int status; in titan_agp_cleanup() local 625 status = iommu_release(aper->arena, aper->pg_start, aper->pg_count); in titan_agp_cleanup() 626 if (status == -EBUSY) { in titan_agp_cleanup() 630 status = iommu_release(aper->arena, aper->pg_start, in titan_agp_cleanup() 633 if (status < 0) in titan_agp_cleanup()
|
| /OK3568_Linux_fs/kernel/drivers/media/usb/gspca/ |
| H A D | mr97310a.c | 228 u8 status = 0; in zero_the_pointer() local 271 while (status != 0x0a && tries < 256) { in zero_the_pointer() 273 status = data[0]; in zero_the_pointer() 278 if (status != 0x0a) in zero_the_pointer() 279 gspca_err(gspca_dev, "status is %02x\n", status); in zero_the_pointer()
|
| /OK3568_Linux_fs/kernel/drivers/net/wireless/rockchip_wlan/cywdhd/bcmdhd/include/ |
| H A D | bcmevent.h | 71 uint32 status; /* Status code (see below) */ 85 uint32 status; /* Status code (see below) */ 749 uint16 status; /* status */ member 993 int32 status; member 1244 uint32 status; member
|
| /OK3568_Linux_fs/kernel/arch/arm64/boot/dts/rockchip/ |
| H A D | rk3399-gru-scarlet.dtsi | 257 status = "okay"; 289 status = "okay"; 361 status = "okay"; 406 status = "okay"; 438 status = "okay";
|
| /OK3568_Linux_fs/kernel/drivers/scsi/sym53c8xx_2/ |
| H A D | sym_hipd.h | 598 #define host_xflags phys.head.status[0] 599 #define host_status phys.head.status[1] 600 #define ssss_status phys.head.status[2] 601 #define host_flags phys.head.status[3] 653 u8 status[4]; member
|
| /OK3568_Linux_fs/kernel/drivers/hwmon/ |
| H A D | lm95234.c | 62 u32 status; /* fault/alarm status */ member 183 data->status = ret; in lm95234_update_device() 188 data->status |= ret << 8; in lm95234_update_device() 193 data->status |= ret << 16; in lm95234_update_device() 229 return sprintf(buf, "%u", !!(data->status & mask)); in alarm_show()
|
| /OK3568_Linux_fs/external/rkwifibt/drivers/infineon/include/ |
| H A D | bcmevent.h | 71 uint32 status; /* Status code (see below) */ 85 uint32 status; /* Status code (see below) */ 754 uint16 status; /* status */ member 998 int32 status; member 1249 uint32 status; member
|
| /OK3568_Linux_fs/kernel/drivers/acpi/numa/ |
| H A D | hmat.c | 829 acpi_status status; in hmat_init() local 834 status = acpi_get_table(ACPI_SIG_SRAT, 0, &tbl); in hmat_init() 835 if (ACPI_FAILURE(status)) in hmat_init() 845 status = acpi_get_table(ACPI_SIG_HMAT, 0, &tbl); in hmat_init() 846 if (ACPI_FAILURE(status)) in hmat_init()
|
| /OK3568_Linux_fs/kernel/drivers/infiniband/hw/usnic/ |
| H A D | usnic_ib_verbs.c | 560 int status; in usnic_ib_modify_qp() local 568 status = -EINVAL; in usnic_ib_modify_qp() 572 status = usnic_ib_qp_grp_modify(qp_grp, attr->qp_state, NULL); in usnic_ib_modify_qp() 575 status = -EINVAL; in usnic_ib_modify_qp() 580 return status; in usnic_ib_modify_qp()
|
| /OK3568_Linux_fs/kernel/sound/soc/atmel/ |
| H A D | mchp-spdiftx.c | 579 memcpy(uvalue->value.iec958.status, ctrl->ch_stat, in mchp_spdiftx_cs_get() 598 if (ctrl->ch_stat[i] != uvalue->value.iec958.status[i]) in mchp_spdiftx_cs_put() 600 ctrl->ch_stat[i] = uvalue->value.iec958.status[i]; in mchp_spdiftx_cs_put() 624 memset(uvalue->value.iec958.status, 0xff, in mchp_spdiftx_cs_mask() 625 sizeof(uvalue->value.iec958.status)); in mchp_spdiftx_cs_mask()
|
| /OK3568_Linux_fs/kernel/drivers/input/keyboard/ |
| H A D | adp5588-keys.c | 297 int status, ev_cnt; in adp5588_work() local 299 status = adp5588_read(client, INT_STAT); in adp5588_work() 301 if (status & ADP5588_OVR_FLOW_INT) /* Unlikely and should never happen */ in adp5588_work() 304 if (status & ADP5588_KE_INT) { in adp5588_work() 311 adp5588_write(client, INT_STAT, status); /* Status is W1C */ in adp5588_work()
|