Re: [U-Boot] [PATCH 1/2] ddr: altera: Replace float multiplication with integer one

2015-08-18 Thread Marek Vasut
On Tuesday, August 18, 2015 at 10:13:42 PM, Dinh Nguyen wrote: On 8/10/15 5:59 PM, Marek Vasut wrote: This gem is really really rare, there was an actual float used in the Altera DDR init code, which pulled in floating point ops from the libgcc, just wow. Since we don't support

Re: [U-Boot] [PATCH 1/2] ddr: altera: Replace float multiplication with integer one

2015-08-18 Thread Dinh Nguyen
On 8/10/15 5:59 PM, Marek Vasut wrote: This gem is really really rare, there was an actual float used in the Altera DDR init code, which pulled in floating point ops from the libgcc, just wow. Since we don't support floating point operations the same way Linux does not support them,

[U-Boot] [PATCH 1/2] ddr: altera: Replace float multiplication with integer one

2015-08-10 Thread Marek Vasut
This gem is really really rare, there was an actual float used in the Altera DDR init code, which pulled in floating point ops from the libgcc, just wow. Since we don't support floating point operations the same way Linux does not support them, replace this with an integer multiplication and