Displaying 1 result from an estimated 1 matches for "div64_s64".
2016 Sep 16
1
[PATCH] volt: use kernel's 64-bit signed division function
Doing direct 64 bit divisions in kernel code leads to references to
undefined symbols on 32 bit architectures. Replace such divisions with
calls to div64_s64 to make the module usable on 32 bit archs.
Signed-off-by: Alexandre Courbot <acourbot at nvidia.com>
---
drm/nouveau/nvkm/subdev/volt/base.c | 6 +++---
lib/include/nvif/os.h | 1 +
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/drm/nouveau/nvkm/subdev/volt/bas...