When upgrading from Fedora 41 to Fedora 43 for our CI tests, (Which I do in
https://patchew.org/QEMU/[email protected]/),
clippy begins complaining about not using checked_div instead of
manually checking divisors; see https://gitlab.com/jsnow/qemu/-/jobs/13169193931

This patch aims to make Clippy happy and prevent any regressions caused
by the lcitool refresh.

v2:

 - Fixed divisor/dividend order for period_to_hz; the correct order is
   DIVIDEND.checked_div(DIVISOR); I had a thinko where I just inverted
   the formula from period_from_hz(), believing it was a perfect
   inverse; it isn't! Thank you very much to Richard Henderson for
   noticing my mistake.

John Snow (1):
  rust: use checked_div to make clippy happy

 rust/hw/core/src/qdev.rs | 14 ++++++--------
 1 file changed, 6 insertions(+), 8 deletions(-)

-- 
2.53.0



Reply via email to