mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-01-13 16:50:05 +00:00
drm/qxl: fix erroneous return value
The qxl_gem_prime_mmap() function returns ENOSYS instead of -ENOSYS Signed-off-by: Anton Protopopov <a.s.protopopov@gmail.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
ff683df7bf
commit
dada168b3b
@ -68,5 +68,5 @@ int qxl_gem_prime_mmap(struct drm_gem_object *obj,
|
||||
struct vm_area_struct *area)
|
||||
{
|
||||
WARN_ONCE(1, "not implemented");
|
||||
return ENOSYS;
|
||||
return -ENOSYS;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user