From: Stefan Roese Date: Fri, 18 Jul 2008 08:43:24 +0000 (+0200) Subject: ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL X-Git-Tag: v1.3.4-rc2~29 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=97a3bf268d096e0e97e54048448c35114edcf557;p=u-boot ide: Use CFG_64BIT_LBA instead of CFG_64BIT_STRTOUL This is needed for boards that define CFG_64BIT_STRTOUL but don't define CFG_64BIT_LBA. Signed-off-by: Stefan Roese --- diff --git a/common/cmd_ide.c b/common/cmd_ide.c index 97a873d1c9..56db433024 100644 --- a/common/cmd_ide.c +++ b/common/cmd_ide.c @@ -298,7 +298,7 @@ int do_ide (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) ulong addr = simple_strtoul(argv[2], NULL, 16); ulong cnt = simple_strtoul(argv[4], NULL, 16); ulong n; -#ifdef CFG_64BIT_STRTOUL +#ifdef CFG_64BIT_LBA lbaint_t blk = simple_strtoull(argv[3], NULL, 16); printf ("\nIDE read: device %d block # %qd, count %ld ... ", @@ -327,7 +327,7 @@ int do_ide (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) ulong addr = simple_strtoul(argv[2], NULL, 16); ulong cnt = simple_strtoul(argv[4], NULL, 16); ulong n; -#ifdef CFG_64BIT_STRTOUL +#ifdef CFG_64BIT_LBA lbaint_t blk = simple_strtoull(argv[3], NULL, 16); printf ("\nIDE write: device %d block # %qd, count %ld ... ",