diff options
Diffstat (limited to 'sys/dev/uart/uart.h')
-rw-r--r-- | sys/dev/uart/uart.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/uart/uart.h b/sys/dev/uart/uart.h index ba17e89..5de4d42 100644 --- a/sys/dev/uart/uart.h +++ b/sys/dev/uart/uart.h @@ -36,11 +36,11 @@ * other timing related computations. */ struct uart_bas { - bus_addr_t iobase; bus_space_tag_t bst; bus_space_handle_t bsh; - u_int regshft; + u_int chan; u_int rclk; + u_int regshft; }; #define uart_regofs(bas, reg) ((reg) << (bas)->regshft) |