Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/char/ns8250/ns8250.c

    r381ff2f r267f235  
    4040#include <stdio.h>
    4141#include <errno.h>
    42 #include <stdbool.h>
     42#include <bool.h>
    4343#include <fibril_synch.h>
    4444#include <stdlib.h>
     
    5151#include <sys/stat.h>
    5252#include <ddi.h>
     53#include <libarch/ddi.h>
    5354
    5455#include <ddf/driver.h>
     
    160161        /** I/O registers **/
    161162        ns8250_regs_t *regs;
    162         /** Is there any client connected to the device? */
     163        /** Is there any client conntected to the device? */
    163164        bool client_connected;
    164165        /** The irq assigned to this device. */
     
    168169        /** The i/o port used to access the serial ports registers. */
    169170        ioport8_t *port;
    170         /** The buffer for incoming data. */
     171        /** The buffer for incomming data. */
    171172        cyclic_buffer_t input_buffer;
    172173        /** The fibril mutex for synchronizing the access to the device. */
     
    190191}
    191192
    192 /** Find out if there is some incoming data available on the serial port.
     193/** Find out if there is some incomming data available on the serial port.
    193194 *
    194195 * @param port          The base address of the serial port device's ports.
Note: See TracChangeset for help on using the changeset viewer.