Home
last modified time | relevance | path

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

/drivers/net/ethernet/freescale/
Dgianfar.c158 u32 lstatus; in gfar_init_rxbdp() local
162 lstatus = BD_LFLAG(RXBD_EMPTY | RXBD_INTERRUPT); in gfar_init_rxbdp()
164 lstatus |= BD_LFLAG(RXBD_WRAP); in gfar_init_rxbdp()
168 bdp->lstatus = cpu_to_be32(lstatus); in gfar_init_rxbdp()
193 txbdp->lstatus = 0; in gfar_init_bds()
1982 txbdp->lstatus = 0; in free_skb_tx_queue()
2010 rxbdp->lstatus = 0; in free_skb_rx_queue()
2342 u32 lstatus; in gfar_start_xmit() local
2409 lstatus = be32_to_cpu(txbdp->lstatus); in gfar_start_xmit()
2420 lstatus |= BD_LFLAG(TXBD_TOE); in gfar_start_xmit()
[all …]
Dgianfar.h556 __be32 lstatus; member
577 __be32 lstatus; member
1305 u32 lstatus = be32_to_cpu(bdp->lstatus); in gfar_clear_txbd_status() local
1307 lstatus &= BD_LFLAG(TXBD_WRAP); in gfar_clear_txbd_status()
1308 bdp->lstatus = cpu_to_be32(lstatus); in gfar_clear_txbd_status()
/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()
/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()
/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()
/drivers/tty/
Dcyclades.c2407 u32 lstatus; in cy_tiocmget() local
2414 lstatus = readl(&info->u.cyz.ch_ctrl->rs_status); in cy_tiocmget()
2415 result = ((lstatus & C_RS_RTS) ? TIOCM_RTS : 0) | in cy_tiocmget()
2416 ((lstatus & C_RS_DTR) ? TIOCM_DTR : 0) | in cy_tiocmget()
2417 ((lstatus & C_RS_DCD) ? TIOCM_CAR : 0) | in cy_tiocmget()
2418 ((lstatus & C_RS_RI) ? TIOCM_RNG : 0) | in cy_tiocmget()
2419 ((lstatus & C_RS_DSR) ? TIOCM_DSR : 0) | in cy_tiocmget()
2420 ((lstatus & C_RS_CTS) ? TIOCM_CTS : 0); in cy_tiocmget()