]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blobdiff - lib/div64.c
test_firmware: Use correct snprintf() limit
[mirror_ubuntu-bionic-kernel.git] / lib / div64.c
index 01c8602bb6ffb9250e5a24b6c6866e47c440da51..ee146bb4c558055d335a1b5409f5d00f7467bed2 100644 (file)
@@ -109,7 +109,7 @@ u64 div64_u64_rem(u64 dividend, u64 divisor, u64 *remainder)
                quot = div_u64_rem(dividend, divisor, &rem32);
                *remainder = rem32;
        } else {
-               int n = 1 + fls(high);
+               int n = fls(high);
                quot = div_u64(dividend >> n, divisor >> n);
 
                if (quot != 0)
@@ -147,7 +147,7 @@ u64 div64_u64(u64 dividend, u64 divisor)
        if (high == 0) {
                quot = div_u64(dividend, divisor);
        } else {
-               int n = 1 + fls(high);
+               int n = fls(high);
                quot = div_u64(dividend >> n, divisor >> n);
 
                if (quot != 0)