]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
Fix typo
authorWolfgang Denk <wd@pollux.denx.de>
Fri, 5 Aug 2005 23:02:27 +0000 (01:02 +0200)
committerWolfgang Denk <wd@pollux.denx.de>
Fri, 5 Aug 2005 23:02:27 +0000 (01:02 +0200)
CHANGELOG
drivers/ti_pci1410a.c
include/configs/sc520_spunk.h

index b49b1af14237e10c01a510f63968e496611c30ec..9dc91869269ef67197c6a7e446252b2825c1e938 100644 (file)
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -2,6 +2,8 @@
 Changes for U-Boot 1.1.3:
 ======================================================================
 
+* Fix typo
+
 * Fix compiler warnings in cpu/ppc4xx/usbdev.c
   Patch by Steven Blakeslee, 04 Aug 2005
 
index c672382759b682fbfec6cd7adfd6854b2a5a0425..d5297b57213e635f3b1907b6be766640470c45c2 100644 (file)
@@ -88,8 +88,8 @@ const char *indent = "\t   ";
 
 int do_pinit(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
 {
-#ifndef CFG_FISRT_PCMCIA_BUS
-# define CFG_FISRT_PCMCIA_BUS 0
+#ifndef CFG_FIRST_PCMCIA_BUS
+# define CFG_FIRST_PCMCIA_BUS 0
 #endif
 
        int rcode = 0;
@@ -99,7 +99,7 @@ int do_pinit(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
                return 1;
        }
        if (strcmp(argv[1],"on") == 0) {
-               rcode = pcmcia_on(CFG_FISRT_PCMCIA_BUS);
+               rcode = pcmcia_on(CFG_FIRST_PCMCIA_BUS);
        } else if (strcmp(argv[1],"off") == 0) {
                rcode = pcmcia_off();
        } else {
index 9d26beb21df28e7cc3c201640a8bd151697464cc..4114dd323dcf1c489c209e0557cfd20bf8b7bbfc 100644 (file)
 #define CFG_ATA_REG_OFFSET     0       /* reg offset */
 #define CFG_ATA_ALT_OFFSET     0x200   /* alternate register offset */
 
-#define CFG_FISRT_PCMCIA_BUS    1
+#define CFG_FIRST_PCMCIA_BUS    1
 
 #undef CONFIG_IDE_LED                  /* no led for ide supported     */
 #undef  CONFIG_IDE_RESET               /* reset for ide unsupported... */