diff options
author | 2015-12-04 14:01:02 +0100 | |
---|---|---|
committer | 2015-12-04 14:01:02 +0100 | |
commit | c09c9dd2e9c732658c744a802101d5c34fedde22 (patch) | |
tree | 89f930ede811e66e7a70761aaca079d779fed38a /lib/div64.c | |
parent | x86/PCI/ACPI: Fix regression caused by commit 4d6b4e69a245 (diff) | |
parent | PCI / PM: Tune down retryable runtime suspend error messages (diff) | |
download | wireguard-linux-c09c9dd2e9c732658c744a802101d5c34fedde22.tar.xz wireguard-linux-c09c9dd2e9c732658c744a802101d5c34fedde22.zip |
Merge branches 'acpi-pci' and 'pm-pci'
* acpi-pci:
x86/PCI/ACPI: Fix regression caused by commit 4d6b4e69a245
* pm-pci:
PCI / PM: Tune down retryable runtime suspend error messages
Diffstat (limited to 'lib/div64.c')
-rw-r--r-- | lib/div64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/div64.c b/lib/div64.c index 19ea7ed4b948..62a698a432bc 100644 --- a/lib/div64.c +++ b/lib/div64.c @@ -162,7 +162,7 @@ s64 div64_s64(s64 dividend, s64 divisor) { s64 quot, t; - quot = div64_u64(abs64(dividend), abs64(divisor)); + quot = div64_u64(abs(dividend), abs(divisor)); t = (dividend ^ divisor) >> 63; return (quot ^ t) - t; |