diff options
| author | Stefan Roese <sr@denx.de> | 2007-08-15 21:06:27 +0200 | 
|---|---|---|
| committer | Stefan Roese <sr@denx.de> | 2007-08-15 21:06:27 +0200 | 
| commit | b706d63559aeec352bc72dd86d7d5423c15f6a60 (patch) | |
| tree | fdeda4d61970fef239d9d66ecd851fa46cfe5ec0 /board/freescale/common/pixis.c | |
| parent | c8603cfbd4573379a6076c9c208545ba2bbf019a (diff) | |
| parent | 594e79838ce5078a90d0c27abb2b2d61d5f8e8a7 (diff) | |
| download | olio-uboot-2014.01-b706d63559aeec352bc72dd86d7d5423c15f6a60.tar.xz olio-uboot-2014.01-b706d63559aeec352bc72dd86d7d5423c15f6a60.zip | |
Merge with git://www.denx.de/git/u-boot.git
Diffstat (limited to 'board/freescale/common/pixis.c')
| -rw-r--r-- | board/freescale/common/pixis.c | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/board/freescale/common/pixis.c b/board/freescale/common/pixis.c index af98157df..99cc2ee19 100644 --- a/board/freescale/common/pixis.c +++ b/board/freescale/common/pixis.c @@ -321,10 +321,10 @@ static ulong strfractoint(uchar *strptr)  		mulconst = 1;  		for (i = 0; i < decarr_len; i++)  			mulconst *= 10; -		decval = simple_strtoul(decarr, NULL, 10); +		decval = simple_strtoul((char *)decarr, NULL, 10);  	} -	intval = simple_strtoul(intarr, NULL, 10); +	intval = simple_strtoul((char *)intarr, NULL, 10);  	intval = intval * mulconst;  	retval = intval + decval; @@ -362,7 +362,7 @@ pixis_reset_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  		val = set_px_sysclk(simple_strtoul(argv[2], NULL, 10)); -		corepll = strfractoint(argv[3]); +		corepll = strfractoint((uchar *)argv[3]);  		val = val + set_px_corepll(corepll);  		val = val + set_px_mpxpll(simple_strtoul(argv[4], NULL, 10));  		if (val == 3) { @@ -410,7 +410,7 @@ pixis_reset_cmd(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])  			read_from_px_regs(0);  			read_from_px_regs_altbank(0);  			val = set_px_sysclk(simple_strtoul(argv[3], NULL, 10)); -			corepll = strfractoint(argv[4]); +			corepll = strfractoint((uchar *)argv[4]);  			val = val + set_px_corepll(corepll);  			val = val + set_px_mpxpll(simple_strtoul(argv[5],  								 NULL, 10)); |