mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-12 21:46:05 -04:00
Fix typo
This commit is contained in:
parent
c04a76e6f0
commit
3836221d5b
@ -2,6 +2,8 @@
|
|||||||
Changes for U-Boot 1.1.3:
|
Changes for U-Boot 1.1.3:
|
||||||
======================================================================
|
======================================================================
|
||||||
|
|
||||||
|
* Fix typo
|
||||||
|
|
||||||
* Fix compiler warnings in cpu/ppc4xx/usbdev.c
|
* Fix compiler warnings in cpu/ppc4xx/usbdev.c
|
||||||
Patch by Steven Blakeslee, 04 Aug 2005
|
Patch by Steven Blakeslee, 04 Aug 2005
|
||||||
|
|
||||||
|
@ -88,8 +88,8 @@ const char *indent = "\t ";
|
|||||||
|
|
||||||
int do_pinit(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
|
int do_pinit(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
|
||||||
{
|
{
|
||||||
#ifndef CFG_FISRT_PCMCIA_BUS
|
#ifndef CFG_FIRST_PCMCIA_BUS
|
||||||
# define CFG_FISRT_PCMCIA_BUS 0
|
# define CFG_FIRST_PCMCIA_BUS 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
int rcode = 0;
|
int rcode = 0;
|
||||||
@ -99,7 +99,7 @@ int do_pinit(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
|
|||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
if (strcmp(argv[1],"on") == 0) {
|
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) {
|
} else if (strcmp(argv[1],"off") == 0) {
|
||||||
rcode = pcmcia_off();
|
rcode = pcmcia_off();
|
||||||
} else {
|
} else {
|
||||||
|
@ -169,7 +169,7 @@
|
|||||||
#define CFG_ATA_REG_OFFSET 0 /* reg offset */
|
#define CFG_ATA_REG_OFFSET 0 /* reg offset */
|
||||||
#define CFG_ATA_ALT_OFFSET 0x200 /* alternate register 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_LED /* no led for ide supported */
|
||||||
#undef CONFIG_IDE_RESET /* reset for ide unsupported... */
|
#undef CONFIG_IDE_RESET /* reset for ide unsupported... */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user