]> git.karo-electronics.de Git - karo-tx-uboot.git/commit
video: ipu_common: fix build error
authorPeng Fan <van.freenix@gmail.com>
Thu, 28 Apr 2016 02:07:53 +0000 (10:07 +0800)
committerStefano Babic <sbabic@denx.de>
Thu, 28 Apr 2016 14:28:45 +0000 (16:28 +0200)
commitc510f2e436008e55a50b063f2180cb1e63984224
treec33900792f85273a7cadd24769b6d4dea7c8ff4b
parente25b369c048b51b1feb79587750e7e160fc0bd73
video: ipu_common: fix build error

Some toolchains fail to build
"clk->rate = (u64)(clk->parent->rate * 16) / div;"
And the cast usage is wrong.

Use the following code to fix the issue,
"
  do_div(parent_rate, div);
  clk->rate = parent_rate;
"

Reported-by: Peter Robinson <pbrobinson@gmail.com>
Signed-off-by: Peng Fan <van.freenix@gmail.com>
Cc: Stefano Babic <sbabic@denx.de>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Cc: Tom Rini <trini@konsulko.com>
Cc: Anatolij Gustschin <agust@denx.de>
Cc: Peter Robinson <pbrobinson@gmail.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Tested-by: Peter Robinson <pbrobinson@gmail.com>
drivers/video/ipu_common.c