Lines Matching refs:room
80 u8 room; in keyspan_pda_get_write_room() local
89 &room, in keyspan_pda_get_write_room()
98 dev_dbg(&port->dev, "roomquery says %d\n", room); in keyspan_pda_get_write_room()
100 return room; in keyspan_pda_get_write_room()
461 int room; in keyspan_pda_write_start() local
480 room = priv->tx_room; in keyspan_pda_write_start()
483 if (!test_bit(0, &port->write_urbs_free) || count == 0 || room == 0) { in keyspan_pda_write_start()
489 if (count > room) in keyspan_pda_write_start()
490 count = room; in keyspan_pda_write_start()
503 dev_dbg(&port->dev, "%s - count = %d, txroom = %d\n", __func__, count, room); in keyspan_pda_write_start()
511 priv->tx_room = max(priv->tx_room, room + count); in keyspan_pda_write_start()
518 if (count == room) in keyspan_pda_write_start()