diff options
author | Wolfgang Denk <wd@pollux.denx.de> | 2005-08-06 01:02:27 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@pollux.denx.de> | 2005-08-06 01:02:27 +0200 |
commit | 3836221d5b9dcf1c0c0c0b016cc1701ee8406cd5 (patch) | |
tree | 4e071b175e79e9c810640b007e4f37155936d8e0 /drivers/ti_pci1410a.c | |
parent | c04a76e6f038ea560f39214f9737974d91742fa8 (diff) | |
download | u-boot-imx-3836221d5b9dcf1c0c0c0b016cc1701ee8406cd5.zip u-boot-imx-3836221d5b9dcf1c0c0c0b016cc1701ee8406cd5.tar.gz u-boot-imx-3836221d5b9dcf1c0c0c0b016cc1701ee8406cd5.tar.bz2 |
Fix typo
Diffstat (limited to 'drivers/ti_pci1410a.c')
-rw-r--r-- | drivers/ti_pci1410a.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/ti_pci1410a.c b/drivers/ti_pci1410a.c index c672382..d5297b5 100644 --- a/drivers/ti_pci1410a.c +++ b/drivers/ti_pci1410a.c @@ -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 { |