From b05dcb58fe04c6274fc942fa93efe77072395951 Mon Sep 17 00:00:00 2001 From: wdenk Date: Fri, 4 Mar 2005 11:27:31 +0000 Subject: * Fix get_partition_info() parameter error in all other calls (common/cmd_ide.c, common/cmd_reiser.c, common/cmd_scsi.c). * Enable USB and IDE support for INKA4x0 board * Patch by Andrew Dyer, 28 February 2005: fix ext2load passing an incorrect pointer to get_partition_info() resulting in load failure for devices other than 0 --- common/cmd_ext2.c | 5 ++++- common/cmd_ide.c | 2 +- common/cmd_reiser.c | 2 +- common/cmd_scsi.c | 2 +- 4 files changed, 7 insertions(+), 4 deletions(-) (limited to 'common') diff --git a/common/cmd_ext2.c b/common/cmd_ext2.c index 75afb32..af836cd 100644 --- a/common/cmd_ext2.c +++ b/common/cmd_ext2.c @@ -41,6 +41,9 @@ #include #include #include +#if ((CONFIG_COMMANDS & CFG_CMD_USB) && defined(CONFIG_USB_STORAGE)) +#include +#endif #ifndef CONFIG_DOS_PARTITION #error DOS partition support must be selected @@ -223,7 +226,7 @@ int do_ext2load (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) PRINTF("Using device %s%d, partition %d\n", argv[1], dev, part); if (part != 0) { - if (get_partition_info (&dev_desc[dev], part, &info)) { + if (get_partition_info (dev_desc, part, &info)) { printf ("** Bad partition %d **\n", part); return(1); } diff --git a/common/cmd_ide.c b/common/cmd_ide.c index 1cc88e3..e185c95 100644 --- a/common/cmd_ide.c +++ b/common/cmd_ide.c @@ -413,7 +413,7 @@ int do_diskboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) } part = simple_strtoul(++ep, NULL, 16); } - if (get_partition_info (&ide_dev_desc[dev], part, &info)) { + if (get_partition_info (ide_dev_desc, part, &info)) { SHOW_BOOT_PROGRESS (-1); return 1; } diff --git a/common/cmd_reiser.c b/common/cmd_reiser.c index cb316e5..508ffcb 100644 --- a/common/cmd_reiser.c +++ b/common/cmd_reiser.c @@ -212,7 +212,7 @@ int do_reiserload (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) PRINTF("Using device %s%d, partition %d\n", argv[1], dev, part); if (part != 0) { - if (get_partition_info (&dev_desc[dev], part, &info)) { + if (get_partition_info (dev_desc, part, &info)) { printf ("** Bad partition %d **\n", part); return 1; } diff --git a/common/cmd_scsi.c b/common/cmd_scsi.c index 68e46b6..7ee9d8e 100644 --- a/common/cmd_scsi.c +++ b/common/cmd_scsi.c @@ -243,7 +243,7 @@ int do_scsiboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) } part = simple_strtoul(++ep, NULL, 16); } - if (get_partition_info (&scsi_dev_desc[dev], part, &info)) { + if (get_partition_info (scsi_dev_desc, part, &info)) { printf("error reading partinfo\n"); return 1; } -- cgit v1.1