Skip to content

Commit

Permalink
[SERIAL] typo: buad -> baud
Browse files Browse the repository at this point in the history
Replacing mistyped "buad" with "baud" where applicable.

Signed-off-by: Horst Schirmeier <horst@schirmeier.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Horst Schirmeier authored and Russell King committed Jun 5, 2006
1 parent 672c610 commit e853534
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion arch/mips/ddb5xxx/ddb5476/dbg_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ void debugInit(uint32 baud, uint8 data, uint8 parity, uint8 stop)
/* disable interrupts */
UART16550_WRITE(OFS_INTR_ENABLE, 0);

/* set up buad rate */
/* set up baud rate */
{
uint32 divisor;

Expand Down
2 changes: 1 addition & 1 deletion arch/mips/ddb5xxx/ddb5477/kgdb_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ void debugInit(uint32 baud, uint8 data, uint8 parity, uint8 stop)
/* disable interrupts */
UART16550_WRITE(OFS_INTR_ENABLE, 0);

/* set up buad rate */
/* set up baud rate */
{
uint32 divisor;

Expand Down
2 changes: 1 addition & 1 deletion arch/mips/gt64120/ev64120/serialGT.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ void serial_set(int channel, unsigned long baud)
#else
/*
* Note: Set baud rate, hardcoded here for rate of 115200
* since became unsure of above "buad rate" algorithm (??).
* since became unsure of above "baud rate" algorithm (??).
*/
outreg(channel, LCR, 0x83);
outreg(channel, DLM, 0x00); // See note above
Expand Down
2 changes: 1 addition & 1 deletion arch/mips/gt64120/momenco_ocelot/dbg_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void debugInit(uint32 baud, uint8 data, uint8 parity, uint8 stop)
/* disable interrupts */
UART16550_WRITE(OFS_INTR_ENABLE, 0);

/* set up buad rate */
/* set up baud rate */
{
uint32 divisor;

Expand Down
2 changes: 1 addition & 1 deletion arch/mips/ite-boards/generic/dbg_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void debugInit(uint32 baud, uint8 data, uint8 parity, uint8 stop)
/* disable interrupts */
UART16550_WRITE(OFS_INTR_ENABLE, 0);

/* set up buad rate */
/* set up baud rate */
{
uint32 divisor;

Expand Down
2 changes: 1 addition & 1 deletion arch/mips/momentum/jaguar_atx/dbg_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void debugInit(uint32 baud, uint8 data, uint8 parity, uint8 stop)
/* disable interrupts */
UART16550_WRITE(OFS_INTR_ENABLE, 0);

/* set up buad rate */
/* set up baud rate */
{
uint32 divisor;

Expand Down
2 changes: 1 addition & 1 deletion arch/mips/momentum/ocelot_c/dbg_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void debugInit(uint32 baud, uint8 data, uint8 parity, uint8 stop)
/* disable interrupts */
UART16550_WRITE(OFS_INTR_ENABLE, 0);

/* set up buad rate */
/* set up baud rate */
{
uint32 divisor;

Expand Down
2 changes: 1 addition & 1 deletion arch/mips/momentum/ocelot_g/dbg_io.c
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ void debugInit(uint32 baud, uint8 data, uint8 parity, uint8 stop)
/* disable interrupts */
UART16550_WRITE(OFS_INTR_ENABLE, 0);

/* set up buad rate */
/* set up baud rate */
{
uint32 divisor;

Expand Down
2 changes: 1 addition & 1 deletion include/asm-arm/arch-l7200/serial_l7200.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
#define UARTDR 0x00 /* Tx/Rx data */
#define RXSTAT 0x04 /* Rx status */
#define H_UBRLCR 0x08 /* mode register high */
#define M_UBRLCR 0x0C /* mode reg mid (MSB of buad)*/
#define M_UBRLCR 0x0C /* mode reg mid (MSB of baud)*/
#define L_UBRLCR 0x10 /* mode reg low (LSB of baud)*/
#define UARTCON 0x14 /* control register */
#define UARTFLG 0x18 /* flag register */
Expand Down
2 changes: 1 addition & 1 deletion include/asm-arm/arch-l7200/uncompress.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Changelog:
* 05-01-2000 SJH Created
* 05-13-2000 SJH Filled in function bodies
* 07-26-2000 SJH Removed hard coded buad rate
* 07-26-2000 SJH Removed hard coded baud rate
*/

#include <asm/hardware.h>
Expand Down

0 comments on commit e853534

Please sign in to comment.