Changes in uspace/drv/char/ns8250/ns8250.c [381ff2f:267f235] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/char/ns8250/ns8250.c
r381ff2f r267f235 40 40 #include <stdio.h> 41 41 #include <errno.h> 42 #include < stdbool.h>42 #include <bool.h> 43 43 #include <fibril_synch.h> 44 44 #include <stdlib.h> … … 51 51 #include <sys/stat.h> 52 52 #include <ddi.h> 53 #include <libarch/ddi.h> 53 54 54 55 #include <ddf/driver.h> … … 160 161 /** I/O registers **/ 161 162 ns8250_regs_t *regs; 162 /** Is there any client conn ected to the device? */163 /** Is there any client conntected to the device? */ 163 164 bool client_connected; 164 165 /** The irq assigned to this device. */ … … 168 169 /** The i/o port used to access the serial ports registers. */ 169 170 ioport8_t *port; 170 /** The buffer for incom ing data. */171 /** The buffer for incomming data. */ 171 172 cyclic_buffer_t input_buffer; 172 173 /** The fibril mutex for synchronizing the access to the device. */ … … 190 191 } 191 192 192 /** Find out if there is some incom ing data available on the serial port.193 /** Find out if there is some incomming data available on the serial port. 193 194 * 194 195 * @param port The base address of the serial port device's ports.
Note:
See TracChangeset
for help on using the changeset viewer.