Changeset 25eec4e in mainline for uspace/drv/char/ns8250/ns8250.c
- Timestamp:
- 2013-04-19T18:38:18Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6d717a4
- Parents:
- a1e2df13 (diff), 289cb7dd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/drv/char/ns8250/ns8250.c
ra1e2df13 r25eec4e 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.