]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
drm/amdgpu: Make amdgpu_mn functions inline
authorHarry Wentland <harry.wentland@amd.com>
Wed, 15 Jul 2015 11:10:41 +0000 (07:10 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Mon, 2 Nov 2015 15:24:56 +0000 (10:24 -0500)
Unused amdgpu_mn functions threw warnings for every file that includes
amdgpu.h. It makes sense to inline this amdgpu_mn stubs to avoid the warning.

Signed-off-by: Harry Wentland <harry.wentland@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Cc: stable@vger.kernel.org
drivers/gpu/drm/amd/amdgpu/amdgpu.h

index 8305a6ccf796f968d3b543981018c2a6ab2be0be..510cadeac7b15db973b44d75a5335f4ba26e3e2b 100644 (file)
@@ -1752,11 +1752,11 @@ void amdgpu_test_syncing(struct amdgpu_device *adev);
 int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr);
 void amdgpu_mn_unregister(struct amdgpu_bo *bo);
 #else
-static int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr)
+static inline int amdgpu_mn_register(struct amdgpu_bo *bo, unsigned long addr)
 {
        return -ENODEV;
 }
-static void amdgpu_mn_unregister(struct amdgpu_bo *bo) {}
+static inline void amdgpu_mn_unregister(struct amdgpu_bo *bo) {}
 #endif
 
 /*