]> git.baikalelectronics.ru Git - kernel.git/commit
watchdog: davinci: Use div64_ul instead of do_div
authorChangcheng Deng <deng.changcheng@zte.com.cn>
Thu, 25 Nov 2021 01:49:24 +0000 (01:49 +0000)
committerWim Van Sebroeck <wim@linux-watchdog.org>
Tue, 28 Dec 2021 13:03:03 +0000 (14:03 +0100)
commit5630e6317e57c4443dfeb69eb884d3f247b39c9b
tree973234484b8a9fe68059b3f8c28a36e39e477774
parent0479aaed20accf1b4623031a69206d24e90705a7
watchdog: davinci: Use div64_ul instead of do_div

do_div() does a 64-by-32 division. Here the divisor is an unsigned long
which on some platforms is 64 bit wide. So use div64_ul instead of do_div
to avoid a possible truncation.

Reported-by: Zeal Robot <zealci@zte.com.cn>
Signed-off-by: Changcheng Deng <deng.changcheng@zte.com.cn>
Reviewed-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20211125014924.46297-1-deng.changcheng@zte.com.cn
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Wim Van Sebroeck <wim@linux-watchdog.org>
drivers/watchdog/davinci_wdt.c