From: wdenk Date: Wed, 3 Jan 2001 00:05:46 +0000 (+0000) Subject: Fix bug in clock routing when using SMC2 for console X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=2f1e7b5d80cf6fd849cc5393af1bd1148fc9c23e;p=users%2Frw%2Fppcboot.git Fix bug in clock routing when using SMC2 for console --- diff --git a/cpu/mpc8xx/serial.c b/cpu/mpc8xx/serial.c index 88225c5..16840f7 100644 --- a/cpu/mpc8xx/serial.c +++ b/cpu/mpc8xx/serial.c @@ -236,7 +236,7 @@ serial_setbrg (ulong cpu_clock, int baudrate) * Wire BRG1 to SMCx */ - cp->cp_simode = 0x10000000; + cp->cp_simode = 0x00000000; cp->cp_brgc1 = (((cpu_clock / 16 / baudrate)-1) << 1) | CPM_BRG_EN;