diff options
-rw-r--r-- | drivers/gpu/drm/drm_prime.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/drivers/gpu/drm/drm_prime.c b/drivers/gpu/drm/drm_prime.c index c269bc03c42a..1f100d5a323f 100644 --- a/drivers/gpu/drm/drm_prime.c +++ b/drivers/gpu/drm/drm_prime.c @@ -47,8 +47,7 @@ * between applications, they can't be guessed like the globally unique GEM * names. * - * Drivers that support the PRIME API must set the DRIVER_PRIME bit in the - * &drm_driver.driver_features field, and implement the + * Drivers that support the PRIME API implement the * &drm_driver.prime_handle_to_fd and &drm_driver.prime_fd_to_handle operations. * GEM based drivers must use drm_gem_prime_handle_to_fd() and * drm_gem_prime_fd_to_handle() to implement these. For GEM based drivers the @@ -363,9 +362,6 @@ int drm_prime_fd_to_handle_ioctl(struct drm_device *dev, void *data, { struct drm_prime_handle *args = data; - if (!drm_core_check_feature(dev, DRIVER_PRIME)) - return -EOPNOTSUPP; - if (!dev->driver->prime_fd_to_handle) return -ENOSYS; @@ -514,9 +510,6 @@ int drm_prime_handle_to_fd_ioctl(struct drm_device *dev, void *data, { struct drm_prime_handle *args = data; - if (!drm_core_check_feature(dev, DRIVER_PRIME)) - return -EOPNOTSUPP; - if (!dev->driver->prime_handle_to_fd) return -ENOSYS; |