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