}
 
        if (WARN_ON(exp_info->ops->cache_sgt_mapping &&
-                   exp_info->ops->dynamic_mapping))
+                   (exp_info->ops->pin || exp_info->ops->unpin)))
                return ERR_PTR(-EINVAL);
 
-       if (WARN_ON(!exp_info->ops->dynamic_mapping &&
-                   (exp_info->ops->pin || exp_info->ops->unpin)))
+       if (WARN_ON(!exp_info->ops->pin != !exp_info->ops->unpin))
                return ERR_PTR(-EINVAL);
 
        if (!try_module_get(exp_info->owner))
 
 }
 
 const struct dma_buf_ops amdgpu_dmabuf_ops = {
-       .dynamic_mapping = true,
        .attach = amdgpu_dma_buf_attach,
        .detach = amdgpu_dma_buf_detach,
        .pin = amdgpu_dma_buf_pin,
 
          */
        bool cache_sgt_mapping;
 
-       /**
-        * @dynamic_mapping:
-        *
-        * If true the framework makes sure that the map/unmap_dma_buf
-        * callbacks are always called with the dma_resv object locked.
-        *
-        * If false the framework makes sure that the map/unmap_dma_buf
-        * callbacks are always called without the dma_resv object locked.
-        * Mutual exclusive with @cache_sgt_mapping.
-        */
-       bool dynamic_mapping;
-
        /**
         * @attach:
         *
         * This is called by dma_buf_pin and lets the exporter know that the
         * DMA-buf can't be moved any more.
         *
-        * This is called with the dmabuf->resv object locked.
+        * This is called with the dmabuf->resv object locked and is mutual
+        * exclusive with @cache_sgt_mapping.
         *
         * This callback is optional and should only be used in limited use
         * cases like scanout and not for temporary pin operations.
         * This is called by dma_buf_unpin and lets the exporter know that the
         * DMA-buf can be moved again.
         *
-        * This is called with the dmabuf->resv object locked.
+        * This is called with the dmabuf->resv object locked and is mutual
+        * exclusive with @cache_sgt_mapping.
         *
         * This callback is optional.
         */
  */
 static inline bool dma_buf_is_dynamic(struct dma_buf *dmabuf)
 {
-       /* TODO: switch to using pin/unpin functions as indicator. */
-       return dmabuf->ops->dynamic_mapping;
+       return !!dmabuf->ops->pin;
 }
 
 /**