Lines Matching refs:max_frame_size

181 	u32 max_frame_size;			/* as set by device config */  member
926 if (count > info->max_frame_size) { in write()
945 min(info->max_frame_size - info->tx_count - 1, in write()
946 info->max_frame_size - info->tx_put)); in write()
954 if (info->tx_put >= info->max_frame_size) in write()
955 info->tx_put -= info->max_frame_size; in write()
1010 if (info->tx_count < info->max_frame_size - 1) { in put_char()
1012 if (info->tx_put >= info->max_frame_size) in put_char()
1013 info->tx_put -= info->max_frame_size; in put_char()
1126 ret = info->max_frame_size - info->tx_count - 1; in write_room()
1349 info->max_frame_size ); in line_info()
2628 info->tx_buf = kmalloc(info->max_frame_size, GFP_KERNEL); in startup()
3358 BuffersPerFrame = (unsigned short)(info->max_frame_size/SCABUFSIZE); in alloc_dma_bufs()
3359 if ( info->max_frame_size % SCABUFSIZE ) in alloc_dma_bufs()
3503 info->tmp_rx_buf = kmalloc(info->max_frame_size, GFP_KERNEL); in alloc_tmp_rx_buf()
3507 info->flag_buf = kzalloc(info->max_frame_size, GFP_KERNEL); in alloc_tmp_rx_buf()
3677 info->max_frame_size = maxframe[info->line]; in add_device()
3691 if ( info->max_frame_size < 4096 ) in add_device()
3692 info->max_frame_size = 4096; in add_device()
3693 else if ( info->max_frame_size > 65535 ) in add_device()
3694 info->max_frame_size = 65535; in add_device()
3704 info->max_frame_size ); in add_device()
3737 info->max_frame_size = 4096; in alloc_dev()
4295 if (info->tx_get >= info->max_frame_size) in tx_load_fifo()
4296 info->tx_get -= info->max_frame_size; in tx_load_fifo()
4298 if (info->tx_get >= info->max_frame_size) in tx_load_fifo()
4299 info->tx_get -= info->max_frame_size; in tx_load_fifo()
4314 if (info->tx_get >= info->max_frame_size) in tx_load_fifo()
4315 info->tx_get -= info->max_frame_size; in tx_load_fifo()
4939 if (framesize > info->max_frame_size) in rx_get_frame()