aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/gpu
diff options
context:
space:
mode:
authorSouptick Joarder <jrdr.linux@gmail.com>2018-09-04 09:45:05 +0530
committerDaniel Vetter <daniel.vetter@ffwll.ch>2018-09-04 15:07:13 +0200
commitb9a40816fef79a6053b9d601f50e852acdaafebd (patch)
tree8fb6bf8e20d5f0dcfaccc3aace0ac6987c5bd064 /Documentation/gpu
parentdrm/tegra: kick out simplefb (diff)
downloadlinux-dev-b9a40816fef79a6053b9d601f50e852acdaafebd.tar.xz
linux-dev-b9a40816fef79a6053b9d601f50e852acdaafebd.zip
Document/gpu: Use new vm_fault_t type
We have introduce new return type vm_fault_t for fault handler. Update the document for the same. Signed-off-by: Souptick Joarder <jrdr.linux@gmail.com> Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Link: https://patchwork.freedesktop.org/patch/msgid/20180904041505.GA2712@jordon-HP-15-Notebook-PC
Diffstat (limited to 'Documentation/gpu')
-rw-r--r--Documentation/gpu/drm-mm.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/gpu/drm-mm.rst b/Documentation/gpu/drm-mm.rst
index 21b6b72a9ba8..c3ae888b92ef 100644
--- a/Documentation/gpu/drm-mm.rst
+++ b/Documentation/gpu/drm-mm.rst
@@ -297,7 +297,7 @@ made up of several fields, the more interesting ones being:
struct vm_operations_struct {
void (*open)(struct vm_area_struct * area);
void (*close)(struct vm_area_struct * area);
- int (*fault)(struct vm_fault *vmf);
+ vm_fault_t (*fault)(struct vm_fault *vmf);
};