diff options
| author | Larry Johnson <lrj@acm.org> | 2010-04-20 08:11:40 -0400 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2010-04-29 10:15:45 +0200 | 
| commit | 64123e3f06f74dd09b86e2a41d77d31044f495fb (patch) | |
| tree | ae31a2a143cecd295b04aa626fa8631b030358f1 | |
| parent | 3699c28e6d16b563629c285311a0ce62a2c4c5d0 (diff) | |
| download | olio-uboot-2014.01-64123e3f06f74dd09b86e2a41d77d31044f495fb.tar.xz olio-uboot-2014.01-64123e3f06f74dd09b86e2a41d77d31044f495fb.zip | |
Fix typos in Korat board console output
Signed-off-by: Larry Johnson <lrj@acm.org>
Signed-off-by: Stefan Roese <sr@denx.de>
| -rw-r--r-- | board/korat/korat.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/board/korat/korat.c b/board/korat/korat.c index d5260dc23..e5ec69470 100644 --- a/board/korat/korat.c +++ b/board/korat/korat.c @@ -1,5 +1,5 @@  /* - * (C) Copyright 2007-2009 + * (C) Copyright 2007-2010   * Larry Johnson, lrj@acm.org   *   * (C) Copyright 2006-2007 @@ -417,7 +417,7 @@ int misc_init_r(void)  		 * then connect the CompactFlash controller to the PowerPC USB  		 * port.  		 */ -		printf("Attaching CompactFalsh controller to PPC USB\n"); +		printf("Attaching CompactFlash controller to PPC USB\n");  		out_8((u8 *) CONFIG_SYS_CPLD_BASE + 0x02,  		      in_8((u8 *) CONFIG_SYS_CPLD_BASE + 0x02) | 0x10);  	} else { @@ -425,7 +425,7 @@ int misc_init_r(void)  			printf("Warning: \"korat_usbcf\" is not set to a legal "  			       "value (\"ppc\" or \"pci\")\n"); -		printf("Attaching CompactFalsh controller to PCI USB\n"); +		printf("Attaching CompactFlash controller to PCI USB\n");  	}  	if (act == NULL || strcmp(act, "hostdev") == 0) {  		/* SDR Setting */ |