diff options
| author | Tom Rini <trini@ti.com> | 2013-03-04 11:14:27 -0500 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-03-04 11:14:27 -0500 | 
| commit | 1c9f47ab2a2e9b62d08d39bfb9c4adc8f8edc5da (patch) | |
| tree | fa4ee32d67f02d1c8fa80a55b9d85982cedac062 /common/cmd_mtdparts.c | |
| parent | c259188b203d95e4a854e7e29b9e4472cc982f65 (diff) | |
| parent | 218da0f35f4b5e5bf13d3dba6d975d4d5d65516f (diff) | |
| download | olio-uboot-2014.01-1c9f47ab2a2e9b62d08d39bfb9c4adc8f8edc5da.tar.xz olio-uboot-2014.01-1c9f47ab2a2e9b62d08d39bfb9c4adc8f8edc5da.zip | |
Merge branch 'mem' of git://git.denx.de/u-boot-x86
Diffstat (limited to 'common/cmd_mtdparts.c')
| -rw-r--r-- | common/cmd_mtdparts.c | 4 | 
1 files changed, 1 insertions, 3 deletions
| diff --git a/common/cmd_mtdparts.c b/common/cmd_mtdparts.c index 06fc171fe..0cfca0c46 100644 --- a/common/cmd_mtdparts.c +++ b/common/cmd_mtdparts.c @@ -230,7 +230,6 @@ static void memsize_format(char *buf, u32 size)   */  static void index_partitions(void)  { -	char buf[16];  	u16 mtddevnum;  	struct part_info *part;  	struct list_head *dentry; @@ -244,8 +243,7 @@ static void index_partitions(void)  			dev = list_entry(dentry, struct mtd_device, link);  			if (dev == current_mtd_dev) {  				mtddevnum += current_mtd_partnum; -				sprintf(buf, "%d", mtddevnum); -				setenv("mtddevnum", buf); +				setenv_ulong("mtddevnum", mtddevnum);  				break;  			}  			mtddevnum += dev->num_parts; |