From 381ff2f9facee609cbd58e051152b38fbb1066d6 Mon Sep 17 00:00:00 2001 From: Maurizio Lombardi Date: Thu, 11 Apr 2013 23:01:03 +0200 Subject: [PATCH] ns8250: fix misspellings --- uspace/drv/char/ns8250/ns8250.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/uspace/drv/char/ns8250/ns8250.c b/uspace/drv/char/ns8250/ns8250.c index d11931656..9b0f8c81c 100644 --- a/uspace/drv/char/ns8250/ns8250.c +++ b/uspace/drv/char/ns8250/ns8250.c @@ -159,7 +159,7 @@ typedef struct ns8250 { ddf_fun_t *fun; /** I/O registers **/ ns8250_regs_t *regs; - /** Is there any client conntected to the device? */ + /** Is there any client connected to the device? */ bool client_connected; /** The irq assigned to this device. */ int irq; @@ -167,7 +167,7 @@ typedef struct ns8250 { uint32_t io_addr; /** The i/o port used to access the serial ports registers. */ ioport8_t *port; - /** The buffer for incomming data. */ + /** The buffer for incoming data. */ cyclic_buffer_t input_buffer; /** The fibril mutex for synchronizing the access to the device. */ fibril_mutex_t mutex; @@ -189,7 +189,7 @@ static ns8250_t *fun_ns8250(ddf_fun_t *fun) return dev_ns8250(ddf_fun_get_dev(fun)); } -/** Find out if there is some incomming data available on the serial port. +/** Find out if there is some incoming data available on the serial port. * * @param port The base address of the serial port device's ports. * @return True if there are data waiting to be read, false -- 2.11.4.GIT