Lines Matching defs:max3100_port
92 struct max3100_port { struct
93 struct uart_port port;
94 struct spi_device *spi;
96 int cts; /* last CTS received for flow ctrl */
97 int tx_empty; /* last TX empty bit */
99 spinlock_t conf_lock; /* shared data */
100 int conf_commit; /* need to make changes */
101 int conf; /* configuration for the MAX31000
103 int rts_commit; /* need to change rts */
104 int rts; /* rts status */
105 int baud; /* current baud rate */
107 int parity; /* keeps track if we should send parity */
111 int rx_enabled; /* if we should rx chars */
136 static struct max3100_port *max3100s[MAX_MAX3100]; /* the chips */ argument