2005-04-26 Joel Sherrill <joel@OARcorp.com>

* mcf5206/include/mcfuart.h: Reformatted.
This commit is contained in:
Joel Sherrill
2005-04-26 23:24:41 +00:00
parent 7c6a5cabd1
commit b0e6c06224
2 changed files with 13 additions and 9 deletions
+4
View File
@@ -1,3 +1,7 @@
2005-04-26 Joel Sherrill <joel@OARcorp.com>
* mcf5206/include/mcfuart.h: Reformatted.
2005-02153 Eric Norum <norume@aps.anl.gov>
* shared/cache/cache_.h: Remove development warning.
@@ -33,17 +33,17 @@
* current operating values
*/
typedef struct mcfuart {
uint32_t chn; /* UART channel number */
uint8_t intvec; /* UART interrupt vector number, or
0 if polled I/O */
void *tty; /* termios channel descriptor */
uint32_t chn; /* UART channel number */
uint8_t intvec; /* UART interrupt vector number, or
0 if polled I/O */
void *tty; /* termios channel descriptor */
volatile const char *tx_buf; /* Transmit buffer from termios */
volatile uint32_t tx_buf_len;/* Transmit buffer length */
volatile uint32_t tx_ptr; /* Index of next char to transmit*/
rtems_isr_entry old_handler;/* Saved interrupt handler */
volatile const uint8_t *tx_buf; /* Transmit buffer from termios */
volatile uint32_t tx_buf_len; /* Transmit buffer length */
volatile uint32_t tx_ptr; /* Index of next char to transmit*/
rtems_isr_entry old_handler; /* Saved interrupt handler */
tcflag_t c_iflag; /* termios input mode flags */
tcflag_t c_iflag; /* termios input mode flags */
rtems_boolean parerr_mark_flag; /* Parity error processing
state */
} mcfuart;