drm/ttm: make TTM_MAX_BO_PRIORITY unsigned
authorNicolai Hähnle <nicolai.haehnle@amd.com>
Tue, 14 Feb 2017 10:06:52 +0000 (11:06 +0100)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 16 Feb 2017 16:44:26 +0000 (11:44 -0500)
Fix a warning about different types in min() macro in amdgpu:

In file included from ./include/linux/list.h:8:0,
                 from drivers/gpu/drm/amd/amdgpu/amdgpu_object.c:32:
drivers/gpu/drm/amd/amdgpu/amdgpu_object.c: In function ‘amdgpu_bo_create_restricted’:
./include/linux/kernel.h:739:16: warning: comparison of distinct pointer types lacks a cast
  (void) (&min1 == &min2);   \
                ^
./include/linux/kernel.h:742:2: note: in expansion of macro ‘__min’
  __min(typeof(x), typeof(y),   \
  ^~~~~
drivers/gpu/drm/amd/amdgpu/amdgpu_object.c:434:21: note: in expansion of macro ‘min’
  bo->tbo.priority = min(bo->tbo.priority, TTM_MAX_BO_PRIORITY - 1);
                     ^~~

Signed-off-by: Nicolai Hähnle <nicolai.haehnle@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
include/drm/ttm/ttm_bo_driver.h

index 7e75fa0534739c2c35c357d9a0f88afeb098b07f..a8e8db024980abf88c767cdcd15202ed87c9d2a7 100644 (file)
@@ -42,7 +42,7 @@
 #include <linux/spinlock.h>
 #include <linux/reservation.h>
 
-#define TTM_MAX_BO_PRIORITY    16
+#define TTM_MAX_BO_PRIORITY    16U
 
 struct ttm_backend_func {
        /**