Home
last modified time | relevance | path

Searched refs:lstatus (Results 1 – 8 of 8) sorted by relevance

/linux-4.1.27/drivers/usb/host/
Duhci-hub.c246 int status, lstatus, retval = 0; in uhci_hub_control() local
277 wPortChange = lstatus = 0; in uhci_hub_control()
287 lstatus |= 1; in uhci_hub_control()
290 lstatus |= 4; in uhci_hub_control()
310 wIndex, status, lstatus); in uhci_hub_control()
/linux-4.1.27/drivers/net/ethernet/freescale/
Dgianfar.c159 u32 lstatus; in gfar_init_rxbdp() local
163 lstatus = BD_LFLAG(RXBD_EMPTY | RXBD_INTERRUPT); in gfar_init_rxbdp()
165 lstatus |= BD_LFLAG(RXBD_WRAP); in gfar_init_rxbdp()
169 bdp->lstatus = cpu_to_be32(lstatus); in gfar_init_rxbdp()
196 txbdp->lstatus = 0; in gfar_init_bds()
1907 txbdp->lstatus = 0; in free_skb_tx_queue()
1939 rxbdp->lstatus = 0; in free_skb_rx_queue()
2253 u32 lstatus; in gfar_start_xmit() local
2320 lstatus = be32_to_cpu(txbdp->lstatus); in gfar_start_xmit()
2329 u32 lstatus_ts = be32_to_cpu(txbdp_tstamp->lstatus); in gfar_start_xmit()
[all …]
Dgianfar.h550 __be32 lstatus; member
571 __be32 lstatus; member
1292 u32 lstatus = be32_to_cpu(bdp->lstatus); in gfar_clear_txbd_status() local
1294 lstatus &= BD_LFLAG(TXBD_WRAP); in gfar_clear_txbd_status()
1295 bdp->lstatus = cpu_to_be32(lstatus); in gfar_clear_txbd_status()
/linux-4.1.27/drivers/spi/
Dspi-ppc4xx.c307 u8 lstatus; in spi_ppc4xx_int() local
313 lstatus = in_8(&hw->regs->sr); in spi_ppc4xx_int()
314 } while (++cnt < 100 && lstatus & SPI_PPC4XX_SR_BSY); in spi_ppc4xx_int()
/linux-4.1.27/drivers/scsi/csiostor/
Dcsio_lnode.c1474 enum fw_fcoe_link_status lstatus; in csio_fcoe_fwevt_handler() local
1481 lstatus = lcmd->lstatus; in csio_fcoe_fwevt_handler()
1487 if (lstatus == FCOE_LINKUP) { in csio_fcoe_fwevt_handler()
1495 } else if (lstatus == FCOE_LINKDOWN) { in csio_fcoe_fwevt_handler()
1504 lcmd->lstatus); in csio_fcoe_fwevt_handler()
Dt4fw_api_stor.h333 u8 lstatus; member
Dcsio_mb.c852 cmdp->lstatus = link_status; in csio_write_fcoe_link_cond_init_mb()
/linux-4.1.27/drivers/tty/
Dcyclades.c2427 u32 lstatus; in cy_tiocmget() local
2434 lstatus = readl(&info->u.cyz.ch_ctrl->rs_status); in cy_tiocmget()
2435 result = ((lstatus & C_RS_RTS) ? TIOCM_RTS : 0) | in cy_tiocmget()
2436 ((lstatus & C_RS_DTR) ? TIOCM_DTR : 0) | in cy_tiocmget()
2437 ((lstatus & C_RS_DCD) ? TIOCM_CAR : 0) | in cy_tiocmget()
2438 ((lstatus & C_RS_RI) ? TIOCM_RNG : 0) | in cy_tiocmget()
2439 ((lstatus & C_RS_DSR) ? TIOCM_DSR : 0) | in cy_tiocmget()
2440 ((lstatus & C_RS_CTS) ? TIOCM_CTS : 0); in cy_tiocmget()