diff options
Diffstat (limited to 'freedreno/msm/msm_bo.c')
-rw-r--r-- | freedreno/msm/msm_bo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/freedreno/msm/msm_bo.c b/freedreno/msm/msm_bo.c index cfaec827..72471df6 100644 --- a/freedreno/msm/msm_bo.c +++ b/freedreno/msm/msm_bo.c @@ -98,7 +98,7 @@ static int msm_bo_madvise(struct fd_bo *bo, int willneed) int ret; /* older kernels do not support this: */ - if (bo->dev->version < 1) + if (bo->dev->version < FD_VERSION_MADVISE) return willneed; ret = drmCommandWriteRead(bo->dev->fd, DRM_MSM_GEM_MADVISE, &req, sizeof(req)); |