Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.9 19 lines 346 B view raw
1/* SPDX-License-Identifier: GPL-2.0+ */ 2/* Synopsys DesignWare 8250 library header file. */ 3 4#include <linux/types.h> 5 6#include "8250.h" 7 8struct dw8250_port_data { 9 /* Port properties */ 10 int line; 11 12 /* DMA operations */ 13 struct uart_8250_dma dma; 14 15 /* Hardware configuration */ 16 u8 dlf_size; 17}; 18 19void dw8250_setup_port(struct uart_port *p);