mirror of
https://github.com/fail0verflow/switch-linux.git
synced 2025-05-04 02:34:21 -04: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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue