diff options
| author | Bartlomiej Sieka <tur@semihalf.com> | 2006-12-20 00:29:43 +0100 | 
|---|---|---|
| committer | Bartlomiej Sieka <tur@semihalf.com> | 2006-12-20 00:29:43 +0100 | 
| commit | c84bad0ef60e7055ab0bd49b93069509cecc382a (patch) | |
| tree | 19903454efed654a684dcbefd70917b63bbf0ab0 /common/cmd_nvedit.c | |
| parent | daa6e418bcc0c717752e8de939c213c790286096 (diff) | |
| download | olio-uboot-2014.01-c84bad0ef60e7055ab0bd49b93069509cecc382a.tar.xz olio-uboot-2014.01-c84bad0ef60e7055ab0bd49b93069509cecc382a.zip | |
Fix to make the baudrate changes immediate for the MCF52x2 family.
Diffstat (limited to 'common/cmd_nvedit.c')
| -rw-r--r-- | common/cmd_nvedit.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/common/cmd_nvedit.c b/common/cmd_nvedit.c index d3f50f87f..9834ba65b 100644 --- a/common/cmd_nvedit.c +++ b/common/cmd_nvedit.c @@ -248,7 +248,7 @@ int _do_setenv (int flag, int argc, char *argv[])  				baudrate);  			udelay(50000);  			gd->baudrate = baudrate; -#ifdef CONFIG_PPC +#if defined(CONFIG_PPC) || defined(CONFIG_MCF52x2)  			gd->bd->bi_baudrate = baudrate;  #endif |