diff options
author | Wolfgang Denk | 2007-03-21 23:26:15 +0100 |
---|---|---|
committer | Wolfgang Denk | 2007-03-21 23:26:15 +0100 |
commit | 2a8dfe08359a1b663418b2faa1da1d7bce34d302 (patch) | |
tree | c5110e23324352b7e12e541f85c554fd9ce14217 /cpu | |
parent | 40750952c7a325e4f3d95eed18af9791485a6199 (diff) |
Code cleanup. Update CHANGELOG
Diffstat (limited to 'cpu')
-rw-r--r-- | cpu/mpc8xx/serial.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cpu/mpc8xx/serial.c b/cpu/mpc8xx/serial.c index 53e03f4afb4..ffc898c5876 100644 --- a/cpu/mpc8xx/serial.c +++ b/cpu/mpc8xx/serial.c @@ -229,14 +229,14 @@ static int smc_init (void) #ifdef CFG_SPC1920_SMC1_CLK4 /* clock source is PLD */ - + /* set freq to 19200 Baud */ *((volatile uchar *) CFG_SPC1920_PLD_BASE+6) = 0x3; /* configure clk4 as input */ im->im_ioport.iop_pdpar |= 0x800; im->im_ioport.iop_pddir &= ~0x800; - cp->cp_simode = ((cp->cp_simode & ~0xf000) | 0x7000); + cp->cp_simode = ((cp->cp_simode & ~0xf000) | 0x7000); #else /* Set up the baud rate generator */ smc_setbrg (); |